diff options
author | Will Estes <westes575@gmail.com> | 2012-08-07 12:18:08 -0400 |
---|---|---|
committer | Will Estes <westes575@gmail.com> | 2012-08-07 15:56:44 -0400 |
commit | ec676fce008138b222d072de28fb05e1dfd945fb (patch) | |
tree | 1d45f3a3df39df4647ec4487f426f8f6b564373a /ccl.c | |
parent | c1a633de7c2ee2fb450b24ec46e9c4390f3c69ea (diff) | |
download | flex-git-bug-2172046.tar.gz |
reorganize flex skeleton and m4 processingbug-2172046
Diffstat (limited to 'ccl.c')
-rw-r--r-- | ccl.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -52,9 +52,7 @@ ccl_contains (const int cclp, const int ch) /* ccladd - add a single character to a ccl */ -void ccladd (cclp, ch) - int cclp; - int ch; +void ccladd (int cclp, int ch) { int ind, len, newpos, i; @@ -225,8 +223,7 @@ int cclinit () /* cclnegate - negate the given ccl */ -void cclnegate (cclp) - int cclp; +void cclnegate (int cclp) { cclng[cclp] = 1; ccl_has_nl[cclp] = !ccl_has_nl[cclp]; @@ -240,9 +237,7 @@ void cclnegate (cclp) * has a non-zero value in the cset array. */ -void list_character_set (file, cset) - FILE *file; - int cset[]; +void list_character_set (FILE *file, int cset[]) { register int i; |