vote up 0 vote down star

I'm trying to write a config-file parser for use in a non-standard C environment. Specifically, I can't rely on the utilities provided by <stdio.h>.

I'm looking to use Flex, but I need to use my own input structures rather than <stdio.h>'s FILE pointers.

flag

2 Answers

vote up 2 vote down check

you can define your own input method by defining the YY_INPUT method:

 %{
     #define YY_INPUT(buf,result,max_size) \
         { \
         int c = getchar(); \
         result = (c == EOF) ? YY_NULL : (buf[0] = c, 1); \
         }
     %}
link|flag
Thanks, that looks like exactly what I'm looking for. – lacqui Mar 8 at 6:13
vote up 1 vote down

Ragel is a generic state machine compiler, which you can use the generated code inside a C function. It has special support for building tokenizers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.