Lines Matching refs:buffer
1695 \brief Append text to a TR_INFO struct's output buffer, expanding it if necessary.
1914 \param tri pointer to a TR_INFO struct which will be analyzed. Result is stored in its "out" buffer.
2585 int parseit(char *buffer,char **data){
2587 pre = strcspn(buffer,":");
2589 *data=&buffer[pre+1];
2590 buffer[pre]='\0';
2591 if(*buffer=='#' )return(OPCOM );
2592 if(0==strcmp("FONT",buffer))return(OPFONT);
2593 if(0==strcmp("ESC" ,buffer))return(OPESC );
2594 if(0==strcmp("ORI", buffer))return(OPORI );
2595 if(0==strcmp("XY", buffer))return(OPXY );
2596 if(0==strcmp("FS", buffer))return(OPFS );
2597 if(0==strcmp("TEXT",buffer))return(OPTEXT);
2598 if(0==strcmp("ALN", buffer))return(OPALN );
2599 if(0==strcmp("LDIR",buffer))return(OPLDIR);
2600 if(0==strcmp("MUL", buffer))return(OPMUL );
2601 if(0==strcmp("ITA", buffer))return(OPITA );
2602 if(0==strcmp("WGT", buffer))return(OPWGT );
2603 if(0==strcmp("DEC", buffer))return(OPDEC );
2604 if(0==strcmp("CND", buffer))return(OPCND );
2605 if(0==strcmp("BKG", buffer))return(OPBKG );
2606 if(0==strcmp("CLR", buffer))return(OPCLR );
2607 if(0==strcmp("DCLR", buffer))return(OPDCLR );
2608 if(0==strcmp("BCLR",buffer))return(OPBCLR );
2609 if(0==strcmp("FLAG",buffer))return(OPFLAGS);
2610 if(0==strcmp("EMIT",buffer))return(OPEMIT);
2611 if(0==strcmp("DONE",buffer))return(OPDONE);