Home | History | Annotate | Download | only in pngminus

Lines Matching full:token

53 void get_token(FILE *pnm_file, char *token);
446 void get_token(FILE *pnm_file, char *token)
453 token[i] = (unsigned char) fgetc (pnm_file);
455 while ((token[i] == '\n') || (token[i] == '\r') || (token[i] == ' '));
461 token[i] = (unsigned char) fgetc (pnm_file);
463 while ((token[i] != '\n') && (token[i] != '\r') && (token[i] != ' '));
465 token[i] = '\0';
512 png_byte token[16];
520 get_token (pnm_file, (char *) token);
521 sscanf ((const char *) token, "%lu", &ret_value);