summaryrefslogtreecommitdiff
path: root/devel/cmunge/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cmunge/pkg-descr')
-rw-r--r--devel/cmunge/pkg-descr13
1 files changed, 0 insertions, 13 deletions
diff --git a/devel/cmunge/pkg-descr b/devel/cmunge/pkg-descr
deleted file mode 100644
index 69b9de8adc08..000000000000
--- a/devel/cmunge/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-CMUNGE is a simple tool for encrypting and compacting C source code, while
-leaving it syntactically and semantically unchanged. It does this by:
-
-* Recursively in-lining `user-defined' #include files.
-* Renaming C identifiers, except those in the C Standard Library, with names
- like l1 (i.e. letter-l one), l2, l3, etc.
-* Removing comments and blank lines, converting multiple consecutive whitespace
- characters (including `\n') into single blanks, removing all unnecessary
- whitespace between tokens.
-* Outputting the transformed code in lines of least N characters long, where N
- is a user-specified minimum line length.
-
-It accepts ANSI and K & R C as its input language.