Lines Matching defs:eptr
283 char *eptr;
285 if ((eptr = md_getenv("ROGUEOPTS")) != NULL) {
287 while ((*eptr) == ' ') {
288 eptr++;
290 if (!(*eptr)) {
293 if (!strncmp(eptr, "fruit=", 6)) {
294 eptr += 6;
295 env_get_value(&fruit, eptr, 1);
296 } else if (!strncmp(eptr, "file=", 5)) {
297 eptr += 5;
298 env_get_value(&save_file, eptr, 0);
299 } else if (!strncmp(eptr, "jump", 4)) {
301 } else if (!strncmp(eptr, "name=", 5)) {
302 eptr += 5;
303 env_get_value(&nick_name, eptr, 0);
304 } else if (!strncmp(eptr, "noaskquit", 9)) {
306 } else if (!strncmp(eptr, "noskull", 5) ||
307 !strncmp(eptr,"notomb", 6)) {
309 } else if (!strncmp(eptr, "passgo", 5)) {
312 while ((*eptr) && (*eptr != ',')) {
313 eptr++;
315 if (!(*(eptr++))) {