4 #define COMMENTCHAR '*'
6 #define COMMENTCHAR '#'
10 our_mntent * getmntent(FILE *filep) {
11 static struct mnttab entry;
12 static our_mntent item;
14 if (!fread(&entry, sizeof(entry), 1, filep)) return NULL;
15 item.our_mntdir = entry.mt_filsys;
20 our_mntent *getmntent(FILE *filep) {
21 static our_mntent item = { NULL };
22 char buf[1024], * start;
25 if (item.our_mntdir) {
26 free(item.our_mntdir);
29 while (fgets(buf, sizeof(buf) - 1, filep)) {
31 buf[strlen(buf) - 1] = '\0';
34 while (isspace(*chptr)) chptr++;
36 if (*chptr == COMMENTCHAR) continue;
39 /* aix uses a screwed up file format */
42 while (*chptr != ':') chptr++;
44 item.mnt_dir = strdup(start);
48 while (!isspace(*chptr) && (*chptr)) chptr++;
49 if (!*chptr) return NULL;
51 while (isspace(*chptr) && (*chptr)) chptr++;
52 if (!*chptr) return NULL;
55 while (!isspace(*chptr) && (*chptr)) chptr++;
58 item.our_mntdir = strdup(start);