#include "MemStreamer.hpp"Go to the source code of this file.
Compounds | |
| class | UserCompressorFactory |
Functions | |
| char * | ParseString (char *from, char *to) |
| char * | SkipWhiteSpaces (char *ptr, char *endptr) |
Variables | |
| MemStreamer | mainmem |
|
||||||||||||
|
Definition at line 218 of file UserCompress.hpp. 00219 {
00220 if(*from!='"')
00221 return NULL;
00222
00223 from++;
00224
00225 while(from<to)
00226 {
00227 if(*from=='"')
00228 return from;
00229 from++;
00230 }
00231
00232 Error("String constant \"...\" expected instead of '");
00233 ErrorCont(from,to-from);
00234 Exit();
00235 return NULL;
00236 }
|
|
||||||||||||
|
Definition at line 238 of file UserCompress.hpp. |
|
|
Definition at line 56 of file UserCompress.hpp. |
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001