diff options
Diffstat (limited to 'languages/cpp/file_templates/l')
-rw-r--r-- | languages/cpp/file_templates/l | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/languages/cpp/file_templates/l b/languages/cpp/file_templates/l new file mode 100644 index 00000000..39a8d138 --- /dev/null +++ b/languages/cpp/file_templates/l @@ -0,0 +1,35 @@ +/* + * + * flex Implementation: $MODULE$ + * + * Description: + * + * + * Author: $AUTHOR$ <$EMAIL$>, (C) $YEAR$ + * + * Copyright: See COPYING file that comes with this distribution + * + */ + +/* + * + * Use options + * + * %option prefix="foo" + * %option outfile="lex.yy.c" + * + * to create multiple flex scanner in one project. + * + */ + +%{ + + +%} + +%option debug + +%% + + +%% |