added README

Fri, 28 Dec 2012 17:00:38 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 28 Dec 2012 17:00:38 +0100
changeset 37
cf65b0ddd030
parent 36
a7ff583e153f
child 38
7ded3ec4c417

added README

README file | annotate | diff | comparison | revisions
src/cline.h file | annotate | diff | comparison | revisions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README	Fri Dec 28 17:00:38 2012 +0100
@@ -0,0 +1,53 @@
+                                       cline
+                        _________________________________________
+                             Copyright (C) 2013 Mike Becker
+
+Contents:
+1) About ................................................................... 11
+2) Contact Information ..................................................... 23
+3) License ................................................................. 29
+
+
+1) About ______________________________________________________________________
+
+cline is a command line tool that counts code lines in your project folder. It
+is designed to recursively find any source file matching specific rules and
+count the line breaks within that file. You may specify file suffixes to include
+or exclude as well as regular expressions for code lines that shall be excluded
+(e.g. to exclude comments). By default a heuristic algorithm skips binary files.
+You may configure the restrictiveness of this algorithm with command line
+options.
+
+Type cline --help for further information.
+
+2) Contact Information ________________________________________________________
+
+You can contact us by either one of the following mail addresses:
+  universe@uap-core.de   -   Direct developer contact
+  info@uap-core.de       -   Generic mail address
+
+3) License ____________________________________________________________________
+
+Copyright 2013 Mike Becker. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer in the
+documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+
--- a/src/cline.h	Fri Dec 28 16:43:18 2012 +0100
+++ b/src/cline.h	Fri Dec 28 17:00:38 2012 +0100
@@ -32,7 +32,7 @@
 #ifndef CLINE_H_
 #define CLINE_H_
 
-const char* VERSION="1.0.36";
+const char* VERSION="1.0.37";
 
 #include "stdinc.h"
 #include "settings.h"

mercurial