Last change
on this file since 6888aa2 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
1.0 KB
|
Rev | Line | |
---|
[3ae31e9] | 1 | Source Modules
|
---|
| 2 |
|
---|
| 3 | ALLOC.C
|
---|
| 4 | alloc(size)
|
---|
| 5 |
|
---|
| 6 | CONIO.C
|
---|
| 7 | getch()
|
---|
| 8 | putch(c)
|
---|
| 9 | ungetch(c)
|
---|
| 10 | cgets(s)
|
---|
| 11 | cputs(s)
|
---|
| 12 |
|
---|
| 13 | FGETS.C
|
---|
| 14 | gets(line)
|
---|
| 15 | fgets(s, n, fp)
|
---|
| 16 | agetc(ptr)
|
---|
| 17 |
|
---|
| 18 | FOPEN.C
|
---|
| 19 | fopen(name, mode)
|
---|
| 20 |
|
---|
| 21 | FPUTS.C
|
---|
| 22 | puts(str)
|
---|
| 23 | fputs(s, fp)
|
---|
| 24 | aputc(c, ptr)
|
---|
| 25 |
|
---|
| 26 | FREAD.C
|
---|
| 27 | fread(buffer, size, number, stream)
|
---|
| 28 | fwrite(buffer, size, number, stream)
|
---|
| 29 |
|
---|
| 30 | FSEEK.C
|
---|
| 31 | fseek(fp, pos, mode)
|
---|
| 32 | ftell(fp)
|
---|
| 33 |
|
---|
| 34 | GETBUFF.C
|
---|
| 35 | getbuff(ptr)
|
---|
| 36 |
|
---|
| 37 | GETC.C
|
---|
| 38 | getw(stream)
|
---|
| 39 | getc(ptr)
|
---|
| 40 |
|
---|
| 41 | LSEEK.C
|
---|
| 42 | lseek(fd, pos, how)
|
---|
| 43 |
|
---|
| 44 | OPEN.C
|
---|
| 45 | creat(name, mode)
|
---|
| 46 | open(name, flag, mode)
|
---|
| 47 | fd_clsall()
|
---|
| 48 | close(fd)
|
---|
| 49 | fileop(name, flag, mode, chp, dp)
|
---|
| 50 | filecl(fp)
|
---|
| 51 |
|
---|
| 52 | POSIT.C
|
---|
| 53 | posit(fd, pos)
|
---|
| 54 |
|
---|
| 55 | PUTC.C
|
---|
| 56 | puterr(c)
|
---|
| 57 | putw(w, stream)
|
---|
| 58 | putc(c, ptr)
|
---|
| 59 | fflush(ptr)
|
---|
| 60 | closall()
|
---|
| 61 | fclose(ptr)
|
---|
| 62 | flush_(ptr, data)
|
---|
| 63 |
|
---|
| 64 | READ.C
|
---|
| 65 | read(fd, buff, len)
|
---|
| 66 | conin(x, buff, len)
|
---|
| 67 |
|
---|
| 68 | RENAME.C
|
---|
| 69 | rename(old, new)
|
---|
| 70 |
|
---|
| 71 | SETBUF.C
|
---|
| 72 | setbuf(stream, buffer)
|
---|
| 73 |
|
---|
| 74 | UNGETC.C
|
---|
| 75 | ungetc(c, ptr)
|
---|
| 76 |
|
---|
| 77 | UNLINK.C
|
---|
| 78 | unlink(name)
|
---|
| 79 |
|
---|
| 80 | WRITE.C
|
---|
| 81 | write(fd, buff, len)
|
---|
| 82 | conwr(kind, buff, len)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.