BillHung.Net


powered by FreeFind     sms

 

int strcmp(const char* cs, const char* ct);
Compares cs with ct, returning negative value if cs<ct, zero if cs==ct, positive value if cs>ct.

 

Michael Hoisie <hoisie@berkeley.edu> wrote:
> <*hello> would print "Error in input file: Empty tag in line xx".
This is incorrect. Check the FSM figure in page 2. When parsing your
stream:

'<' -> move to gettag_empty
* (anything else) -> move to start

-Chema