MCPcopy Create free account
hub / github.com/NetHack/NetHack / dlb_fseek

Function dlb_fseek

src/dlb.c:508–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

506}
507
508int
509dlb_fseek(dlb *dp, long pos, int whence)
510{
511 if (!dlb_initialized)
512 return EOF;
513 if (dp->fp)
514 return fseek(dp->fp, pos, whence);
515 return do_dlb_fseek(dp, pos, whence);
516}
517
518char *
519dlb_fgets(char *buf, int len, dlb *dp)

Callers 8

nhl_loadluaFunction · 0.85
checkfileFunction · 0.85
rumor_checkFunction · 0.85
get_rnd_lineFunction · 0.85
get_rnd_textFunction · 0.85
outoracleFunction · 0.85
init_CapMonsFunction · 0.85
mac_display_fileFunction · 0.85

Calls 1

fseekFunction · 0.85

Tested by

no test coverage detected