summaryrefslogtreecommitdiff
path: root/flex.texi
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-07-10 00:04:36 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-07-10 00:04:36 +0000
commiteab63f4d16533532355729b34762daa28a69fce1 (patch)
tree6786f4d5389fdcc830b1268e054267c83e147aa3 /flex.texi
parent93cb3f65dd9dca2a3a0d8b358e25d0866f1917f2 (diff)
Fixed prefix issue with get/set debug functions.
Fixed prefix issues with memory functions.
Diffstat (limited to 'flex.texi')
-rw-r--r--flex.texi14
1 files changed, 9 insertions, 5 deletions
diff --git a/flex.texi b/flex.texi
index 915ff26..9bb5528 100644
--- a/flex.texi
+++ b/flex.texi
@@ -2564,6 +2564,9 @@ the names affected:
yyrestart
yytext
yywrap
+ yyalloc
+ yyrealloc
+ yyfree
@end verbatim
@end example
@@ -3856,6 +3859,8 @@ The following Functions are available in a reentrant scanner:
@findex yyset_lineno
@findex yyget_debug
@findex yyset_debug
+@findex yyget_extra
+@findex yyset_extra
@example
@verbatim
@@ -4159,10 +4164,9 @@ in braces are simply terminated at the end of the line.
@chapter Memory Management
@cindex memory management
-@cindex alloc, overriding
-@cindex malloc, overriding
-@cindex realloc, overriding
-@cindex free, overriding
+@cindex yyalloc, overriding
+@cindex yyrealloc, overriding
+@cindex yyfree, overriding
@cindex yytext, memory for
This chapter describes how flex handles dynamic memory, and how you can
@@ -4227,7 +4231,7 @@ yylex_destroy().
@node Overriding The Default Memory Management
@section Overriding The Default Memory Management
-TODO -- Describe how to override yy_flex_(alloc,free,realloc),
+TODO -- Describe how to override yy(alloc,free,realloc),
YY_READ_BUF_SIZE, YY_BUF_SIZE, YY_START_STACK_INCR, and anything else that
crops up.