pike.git
/
src
/
lex.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/lex.c:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: lex.c,v 1.
54
1998/
05
/
15
18
:
30
:
21
grubba Exp $");
+
RCSID("$Id: lex.c,v 1.
55
1998/
06
/
07
12
:
26
:
51
grubba Exp $");
#include "language.h" #include "array.h" #include "lex.h" #include "stralloc.h" #include "dynamic_buffer.h" #include "constants.h" #include "hashtable.h" #include "stuff.h" #include "pike_memory.h" #include "interpret.h"
pike.git/src/lex.c:403:
case '4': case '5': case '6': case '7': case '8': case '9': c=c*16+GETC()-'0'; break; case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': c=c*16+GETC()-'a'+10; break; case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
-
c=c*16+GETC()-'
a
'+10;
+
c=c*16+GETC()-'
A
'+10;
break; } return c; } return c; } static struct pike_string *readstring(void) {