Home | History | Annotate | Download | only in tool

Lines Matching defs:filebuf

2517   char *filebuf;
2540 filebuf = (char *)malloc( filesize+1 );
2541 if( filebuf==0 ){
2547 if( fread(filebuf,1,filesize,fp)!=filesize ){
2550 free(filebuf);
2555 filebuf[filesize] = 0;
2558 preprocess_input(filebuf);
2562 for(cp=filebuf; (c= *cp)!=0; ){
2654 free(filebuf); /* Release the buffer after parsing */