1*f3ac6781SToomas Soome #include "ipf.h" 2*f3ac6781SToomas Soome 3*f3ac6781SToomas Soome long string_start = -1; 4*f3ac6781SToomas Soome long string_end = -1; 5*f3ac6781SToomas Soome char *string_val = NULL; 6*f3ac6781SToomas Soome long pos = 0; 7*f3ac6781SToomas Soome 8*f3ac6781SToomas Soome resetlexer()9*f3ac6781SToomas Soomevoid resetlexer() 10*f3ac6781SToomas Soome { 11*f3ac6781SToomas Soome string_start = -1; 12*f3ac6781SToomas Soome string_end = -1; 13*f3ac6781SToomas Soome string_val = NULL; 14*f3ac6781SToomas Soome pos = 0; 15*f3ac6781SToomas Soome } 16