summaryrefslogtreecommitdiffstats
path: root/development/cproto/README
diff options
context:
space:
mode:
author B. Watson2020-11-27 20:40:21 +0100
committer Willy Sudiarto Raharjo2020-11-28 19:02:52 +0100
commit51c55eca05fa9bd27753c8f9695cddad38701397 (patch)
tree82e2ba38f15d4a8043b4830eeb925fd98eb9a2b8 /development/cproto/README
parent049d7a50d1416fa272677906e3972adfbde45d09 (diff)
downloadslackbuilds-51c55eca05fa9bd27753c8f9695cddad38701397.tar.gz
development/cproto: Added (generate function prototypes for C code)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/cproto/README')
-rw-r--r--development/cproto/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/development/cproto/README b/development/cproto/README
new file mode 100644
index 0000000000..9099489a30
--- /dev/null
+++ b/development/cproto/README
@@ -0,0 +1,10 @@
+cproto (generate function prototypes for C code)
+
+Cproto is a program that generates function prototypes and
+variable declarations from C source code. It can also convert
+function definitions between the old style and the ANSI C style.
+This conversion overwrites the original files, so make a backup copy
+of your files in case something goes wrong.
+
+The program isn't confused by complex function definitions as much as
+other prototype generators because it uses a yacc generated parser.