Last change
on this file since 7bf3856 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
4.8 KB
|
Rev | Line | |
---|
[3ae31e9] | 1 | atoi.c
|
---|
| 2 | atoi(cp)
|
---|
| 3 | register char *cp;
|
---|
| 4 |
|
---|
| 5 | atol.c
|
---|
| 6 | long
|
---|
| 7 | atol(cp)
|
---|
| 8 | register char *cp;
|
---|
| 9 |
|
---|
| 10 | blkrd.c
|
---|
| 11 | int
|
---|
| 12 | blkrd(fcp, buf, ns)
|
---|
| 13 | struct fcb *fcp;
|
---|
| 14 | char *buf;
|
---|
| 15 | int ns;
|
---|
| 16 |
|
---|
| 17 | close.c
|
---|
| 18 | int
|
---|
| 19 | close(fd)
|
---|
| 20 | int fd;
|
---|
| 21 |
|
---|
| 22 | int
|
---|
| 23 | _filecl(fp)
|
---|
| 24 | register struct fcb *fp;
|
---|
| 25 |
|
---|
| 26 | _fd_cls()
|
---|
| 27 |
|
---|
| 28 | conin.c
|
---|
| 29 | int
|
---|
| 30 | _conin(x, buff, len)
|
---|
| 31 | char *buff;
|
---|
| 32 |
|
---|
| 33 | conwr.c
|
---|
| 34 | int
|
---|
| 35 | _conwr(kind, buff, len)
|
---|
| 36 | int kind;
|
---|
| 37 | register char *buff;
|
---|
| 38 | int len;
|
---|
| 39 |
|
---|
| 40 | croot.c
|
---|
| 41 | exit(code)
|
---|
| 42 |
|
---|
| 43 | static
|
---|
| 44 | _eredir(name)
|
---|
| 45 | char *name;
|
---|
| 46 |
|
---|
| 47 | Croot(cp)
|
---|
| 48 | register char *cp;
|
---|
| 49 | |
---|
| 50 |
|
---|
| 51 | dirfns.c
|
---|
| 52 | char *
|
---|
| 53 | atrstr(atr, s)
|
---|
| 54 | register short atr;
|
---|
| 55 | register char s[];
|
---|
| 56 |
|
---|
| 57 | char *
|
---|
| 58 | mname(n)
|
---|
| 59 | short n;
|
---|
| 60 |
|
---|
| 61 | char *
|
---|
| 62 | dtunpk(din, tin, s, fmt)
|
---|
| 63 | short din, tin, fmt;
|
---|
| 64 | char *s;
|
---|
| 65 |
|
---|
| 66 | fgets.c
|
---|
| 67 | char *
|
---|
| 68 | gets(line)
|
---|
| 69 | char *line;
|
---|
| 70 |
|
---|
| 71 | char *
|
---|
| 72 | fgets(s, n, fp)
|
---|
| 73 | char *s;
|
---|
| 74 | FILE *fp;
|
---|
| 75 |
|
---|
| 76 | agetc(ptr)
|
---|
| 77 | register FILE *ptr;
|
---|
| 78 | |
---|
| 79 |
|
---|
| 80 | filesys.c
|
---|
| 81 | int
|
---|
| 82 | _badfd()
|
---|
| 83 |
|
---|
| 84 | int
|
---|
| 85 | _noper()
|
---|
| 86 |
|
---|
| 87 | int
|
---|
| 88 | _cl2lsn(bpp, clnum)
|
---|
| 89 | struct bpb *bpp;
|
---|
| 90 | int clnum;
|
---|
| 91 |
|
---|
| 92 | putlc12(fat, cl, val)
|
---|
| 93 | register char *fat;
|
---|
| 94 | int cl, val;
|
---|
| 95 |
|
---|
| 96 | int
|
---|
| 97 | _gtcl12(fat, cl)
|
---|
| 98 | register char *fat;
|
---|
| 99 | int cl;
|
---|
| 100 |
|
---|
| 101 | int
|
---|
| 102 | _getfat(bufad, bpp, nfat)
|
---|
| 103 | int *bufad, nfat;
|
---|
| 104 | register struct bpb *bpp;
|
---|
| 105 |
|
---|
| 106 | int
|
---|
| 107 | _rdfat(bufad, bpp)
|
---|
| 108 | int *bufad;
|
---|
| 109 | struct bpb *bpp;
|
---|
| 110 |
|
---|
| 111 | int
|
---|
| 112 | _rdroot(buf, bpp)
|
---|
| 113 | int *buf;
|
---|
| 114 | register struct bpb *bpp;
|
---|
| 115 |
|
---|
| 116 | int
|
---|
| 117 | _nsic(fcp, bpp, fp)
|
---|
| 118 | register struct fcb *fcp;
|
---|
| 119 | struct bpb *bpp;
|
---|
| 120 | char *fp;
|
---|
| 121 |
|
---|
| 122 | struct dirent *
|
---|
| 123 | _dsrch(de)
|
---|
| 124 | register struct dirent *de;
|
---|
| 125 |
|
---|
| 126 | _deadio(fcp)
|
---|
| 127 | register struct fcb *fcp;
|
---|
| 128 |
|
---|
| 129 | int
|
---|
| 130 | _seek(fcp)
|
---|
| 131 | register struct fcb *fcp;
|
---|
| 132 |
|
---|
| 133 | int
|
---|
| 134 | _ftrnc(dp)
|
---|
| 135 | struct dirent *dp;
|
---|
| 136 |
|
---|
| 137 | int
|
---|
| 138 | _fmake(fcp)
|
---|
| 139 | struct fcb *fcp;
|
---|
| 140 |
|
---|
| 141 | int
|
---|
| 142 | _opfcb(fcp)
|
---|
| 143 | register struct fcb *fcp;
|
---|
| 144 |
|
---|
| 145 | int
|
---|
| 146 | _inifcb(fcp, name, ext, mode)
|
---|
| 147 | register struct fcb *fcp;
|
---|
| 148 | char *name, *ext;
|
---|
| 149 | int mode;
|
---|
| 150 |
|
---|
| 151 | int
|
---|
| 152 | _fsize(fcp)
|
---|
| 153 | struct fcb *fcp;
|
---|
| 154 |
|
---|
| 155 | int
|
---|
| 156 | _rdsec(fcp, buf, ns)
|
---|
| 157 | struct fcb *fcp;
|
---|
| 158 | char *buf;
|
---|
| 159 | long ns;
|
---|
| 160 |
|
---|
| 161 | int
|
---|
| 162 | ClusMap(fcp)
|
---|
| 163 | struct fcb *fcp;
|
---|
| 164 |
|
---|
| 165 | struct fcb *
|
---|
| 166 | FCBmode(fcp)
|
---|
| 167 | struct fcb *fcp;
|
---|
| 168 |
|
---|
| 169 | SnapFCB(fcp)
|
---|
| 170 | struct fcb *fcp;
|
---|
| 171 | |
---|
| 172 |
|
---|
| 173 | filname.c
|
---|
| 174 | char *
|
---|
| 175 | FilName(s)
|
---|
| 176 | char *s;
|
---|
| 177 |
|
---|
| 178 | char *
|
---|
| 179 | FilExt(s)
|
---|
| 180 | char *s;
|
---|
| 181 |
|
---|
| 182 | flread.c
|
---|
| 183 | int
|
---|
| 184 | flread(buff, len, fp)
|
---|
| 185 | register char *buff;
|
---|
| 186 | register long len;
|
---|
| 187 | FILE *fp;
|
---|
| 188 |
|
---|
| 189 | fopen.c
|
---|
| 190 | fopen(name,mode)
|
---|
| 191 | char *name, *mode;
|
---|
| 192 |
|
---|
| 193 | fprintf.c
|
---|
| 194 | printf(fmt,args)
|
---|
| 195 | char *fmt;
|
---|
| 196 | unsigned args;
|
---|
| 197 |
|
---|
| 198 | fprintf(stream,fmt,args)
|
---|
| 199 | FILE *stream;
|
---|
| 200 | char *fmt;
|
---|
| 201 | unsigned args;
|
---|
| 202 |
|
---|
| 203 | static
|
---|
| 204 | fpsub(c)
|
---|
| 205 | |
---|
| 206 |
|
---|
| 207 | fputs.c
|
---|
| 208 | puts(str)
|
---|
| 209 | register char *str;
|
---|
| 210 |
|
---|
| 211 | fputs(s,fp)
|
---|
| 212 | register char *s;
|
---|
| 213 | FILE *fp;
|
---|
| 214 |
|
---|
| 215 | aputc(c,ptr)
|
---|
| 216 | register int c;
|
---|
| 217 | register FILE *ptr;
|
---|
| 218 |
|
---|
| 219 | fread.c
|
---|
| 220 | int
|
---|
| 221 | fread(buffer, size, number, stream)
|
---|
| 222 | register char *buffer;
|
---|
| 223 | unsigned size;
|
---|
| 224 | int number;
|
---|
| 225 | FILE *stream;
|
---|
| 226 |
|
---|
| 227 | fscanf.c
|
---|
| 228 | scanf(fmt, args)
|
---|
| 229 | char *fmt;
|
---|
| 230 | int *args;
|
---|
| 231 |
|
---|
| 232 | fscanf(fp, fmt, args)
|
---|
| 233 | FILE *fp;
|
---|
| 234 | char *fmt;
|
---|
| 235 | int *args;
|
---|
| 236 |
|
---|
| 237 | static
|
---|
| 238 | gchar(what)
|
---|
| 239 |
|
---|
| 240 | fseek.c
|
---|
| 241 | fseek(fp, pos, mode)
|
---|
| 242 | register FILE *fp;
|
---|
| 243 | long pos;
|
---|
| 244 | int mode;
|
---|
| 245 | |
---|
| 246 |
|
---|
| 247 | ftell.c
|
---|
| 248 | long
|
---|
| 249 | ftell(fp)
|
---|
| 250 | register FILE *fp;
|
---|
| 251 |
|
---|
| 252 | fwrite.c
|
---|
| 253 | int
|
---|
| 254 | fwrite(buffer, size, number, stream)
|
---|
| 255 | register char *buffer;
|
---|
| 256 | unsigned size, number;
|
---|
| 257 | FILE *stream;
|
---|
| 258 | |
---|
| 259 |
|
---|
| 260 | getbuff.c
|
---|
| 261 | getbuff(ptr)
|
---|
| 262 | register FILE *ptr;
|
---|
| 263 |
|
---|
| 264 | getc.c
|
---|
| 265 | getw(stream)
|
---|
| 266 | FILE *stream;
|
---|
| 267 |
|
---|
| 268 | getc(ptr)
|
---|
| 269 | register FILE *ptr;
|
---|
| 270 |
|
---|
| 271 | lseek.c
|
---|
| 272 | long
|
---|
| 273 | lseek(fd, pos, how)
|
---|
| 274 | int fd;
|
---|
| 275 | long pos;
|
---|
| 276 | int how;
|
---|
| 277 |
|
---|
| 278 | open.c
|
---|
| 279 | open(name, flag, mode)
|
---|
| 280 | char *name;
|
---|
| 281 |
|
---|
| 282 | creat(name, mode)
|
---|
| 283 | char *name;
|
---|
| 284 |
|
---|
| 285 | int
|
---|
| 286 | _fileop(name, flag, mode, chp, dp)
|
---|
| 287 | char *name;
|
---|
| 288 | int flag, mode;
|
---|
| 289 | struct channel *chp;
|
---|
| 290 | struct devtabl *dp;
|
---|
| 291 |
|
---|
| 292 | posit.c
|
---|
| 293 | int
|
---|
| 294 | posit(fd, pos)
|
---|
| 295 | int fd;
|
---|
| 296 | unsigned pos;
|
---|
| 297 | |
---|
| 298 |
|
---|
| 299 | putc.c
|
---|
| 300 | int
|
---|
| 301 | puterr(c)
|
---|
| 302 |
|
---|
| 303 | int
|
---|
| 304 | putw(w, stream)
|
---|
| 305 | register unsigned w;
|
---|
| 306 | FILE *stream;
|
---|
| 307 |
|
---|
| 308 | int
|
---|
| 309 | putc(c, ptr)
|
---|
| 310 | int c;
|
---|
| 311 | register FILE *ptr;
|
---|
| 312 |
|
---|
| 313 | fflush(ptr)
|
---|
| 314 | FILE *ptr;
|
---|
| 315 |
|
---|
| 316 | static
|
---|
| 317 | closall()
|
---|
| 318 |
|
---|
| 319 | fclose(ptr)
|
---|
| 320 | register FILE *ptr;
|
---|
| 321 |
|
---|
| 322 | int
|
---|
| 323 | flush_(ptr, data)
|
---|
| 324 | register FILE *ptr;
|
---|
| 325 |
|
---|
| 326 | read.c
|
---|
| 327 | int
|
---|
| 328 | read(fd, buff, len)
|
---|
| 329 | char *buff;
|
---|
| 330 |
|
---|
| 331 | int
|
---|
| 332 | _getsec(fp, buf, len)
|
---|
| 333 | register struct fcb *fp;
|
---|
| 334 | char *buf;
|
---|
| 335 | unsigned len;
|
---|
| 336 |
|
---|
| 337 | int
|
---|
| 338 | _filerd(fp, buffer, len)
|
---|
| 339 | register struct fcb *fp;
|
---|
| 340 | char *buffer;
|
---|
| 341 | unsigned len;
|
---|
| 342 |
|
---|
| 343 | readrn.c
|
---|
| 344 | int
|
---|
| 345 | ReadRN(fcp, buf)
|
---|
| 346 | struct fcb *fcp;
|
---|
| 347 | char *buf;
|
---|
| 348 | |
---|
| 349 |
|
---|
| 350 | rename.c
|
---|
| 351 | rename(old, new)
|
---|
| 352 | char *old, *new;
|
---|
| 353 |
|
---|
| 354 | scan.c
|
---|
| 355 | sscanf(string, fmt, arg)
|
---|
| 356 | char *string, *fmt;
|
---|
| 357 | int *arg;
|
---|
| 358 |
|
---|
| 359 | static
|
---|
| 360 | sgetc(what)
|
---|
| 361 |
|
---|
| 362 | scanfmt(getsub, fmt, args)
|
---|
| 363 | int (*getsub)();
|
---|
| 364 | register char *fmt;
|
---|
| 365 | int **args;
|
---|
| 366 |
|
---|
| 367 | skipblank()
|
---|
| 368 |
|
---|
| 369 | double
|
---|
| 370 | getflt(buffer)
|
---|
| 371 | char *buffer;
|
---|
| 372 |
|
---|
| 373 | long
|
---|
| 374 | getnum(list, values, base)
|
---|
| 375 | char *list;
|
---|
| 376 | char *values;
|
---|
| 377 | int base;
|
---|
| 378 |
|
---|
| 379 | setbuf.c
|
---|
| 380 | setbuf(stream, buffer)
|
---|
| 381 | register FILE *stream;
|
---|
| 382 | char *buffer;
|
---|
| 383 |
|
---|
| 384 | ungetc.c
|
---|
| 385 | ungetc(c,ptr)
|
---|
| 386 | int c; register FILE *ptr;
|
---|
| 387 |
|
---|
| 388 | unlink.c
|
---|
| 389 | unlink(name)
|
---|
| 390 | char *name;
|
---|
| 391 | |
---|
| 392 |
|
---|
| 393 | write.c
|
---|
| 394 | int
|
---|
| 395 | _putsec(fp, buf, len)
|
---|
| 396 | register struct fcb *fp;
|
---|
| 397 | char *buf;
|
---|
| 398 | unsigned len;
|
---|
| 399 |
|
---|
| 400 | int
|
---|
| 401 | _filewr(fp, buffer, len)
|
---|
| 402 | register struct fcb *fp;
|
---|
| 403 | char *buffer;
|
---|
| 404 | unsigned len;
|
---|
| 405 |
|
---|
| 406 | int
|
---|
| 407 | write(fd, buff, len)
|
---|
| 408 | char *buff;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.