home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / ABOUT.ZIP / ABOUT.DAT < prev   
Encoding:
Text File  |  1985-07-06  |  7.3 KB  |  515 lines

  1. :ci
  2.     char ci()
  3.  
  4. :co
  5.     void co(c)
  6.     char c;
  7.                     
  8. :csts
  9.     char csts()
  10.  
  11. :getchar
  12.     int getchar()        
  13.  
  14. :gets
  15.     char *gets(s)
  16.     char *s;
  17.             
  18. :putchar
  19.     putchar(c)
  20.     char c;
  21.  
  22. :puts
  23.     void puts(string)
  24.     char *string;
  25.  
  26. :close
  27.     int close(fd)
  28.     int fd;
  29.  
  30. :creat
  31.     int creat(filename)
  32.     char *filename;
  33.  
  34. :fclose
  35.     int fclose(fd)
  36.     int fd;
  37.  
  38. :fgetc
  39.     int fgetc(fd)
  40.     int fd;
  41.  
  42. :fgets
  43.     char *fgets(s, size, fd)
  44.     char *s;
  45.     int size, fd;
  46.  
  47. :fopen
  48.     int fopen(filename, type)
  49.     char *filename, *type;
  50.  
  51. :fputc
  52.     int fputc(c, fd)
  53.     char c;
  54.     int fd;
  55.  
  56. :fputs
  57.     int fputs(c, fd)
  58.     char c;
  59.     int fd;
  60.  
  61. :fread
  62.     int fread(buf, size, count, fd)
  63.     char *buf;
  64.     int size, count, fd;
  65.  
  66. :fseek
  67.     long fseek(fd, offset, mode)
  68.     int fd, mode;
  69.     long offset;
  70.  
  71. :fwrite
  72.     int fwrite(buf, size, count, fd)
  73.     char *buf;
  74.     int size, count, fd;
  75.  
  76. :getc
  77.     int getc(fd)
  78.     int fd;
  79.  
  80. :getw
  81.     int getw(fd)
  82.     int fd;
  83.  
  84. :lseek
  85.     long lseek(fd, offset, mode)
  86.     int fd, mode;
  87.     long offset;
  88.  
  89. :open
  90.     int open(filename, mode)
  91.     char *filename;
  92.     int mode;
  93.  
  94. :putc
  95.     int putc(c, fd)
  96.     char c;
  97.     int fd;
  98.  
  99. :putw
  100.     int putw(n, fd)
  101.     int n, fd;
  102.  
  103. :read
  104.     int read(fd, buf, size)
  105.     int fd, size;
  106.     char *buf;
  107.  
  108. :rename
  109.     int rename(oldf, newf)
  110.     char *oldf, *newf;
  111.  
  112. :rewind
  113.     long rewind(fd)
  114.     int fd;
  115.  
  116. :ungetc
  117.     void ungetc(c, fd)
  118.     char c;
  119.     int fd;
  120.  
  121. :unlink
  122.     int unlink(filename)
  123.     char *filename;
  124.  
  125. :write
  126.     int write(fd, buf, count)
  127.     int fd, count;
  128.     char *buf;
  129.  
  130. :scanf
  131.     void scanf(format, arg1, arg2, ...)
  132.     char *format;
  133.     union datatype *arg1, *arg2, ...;
  134.  
  135. :fscanf
  136.     int fscanf(fd, format, arg1, arg2, ...)
  137.     int fd;
  138.     char *format;
  139.     union datatype *arg1, *arg2, ...;
  140.  
  141. :sscanf
  142.     void sscanf(s, format, arg1, arg2, ...);
  143.     char *s, *format;
  144.     union datatype *arg1, *arg2, ...;
  145.  
  146. :printf
  147.     void printf(format [, arg1, arg2, ...])
  148.     char *format;
  149.  
  150. :fprintf
  151.     int fprintf(fd, format [, arg1, arg2, ...])
  152.     int fd;
  153.     char *format;
  154.  
  155. :sprintf
  156.     void sprintf(s, format [, arg1, arg2, ...])
  157.     char *s, *format;
  158.  
  159. :freeall
  160.     void freeall(size)
  161.     unsigned size;
  162.  
  163. :malloc
  164.     char *malloc(size)
  165.     unsigned size;
  166.  
  167. :free
  168.     int free(pseg)
  169.     char *pseg;
  170.  
  171. :realloc
  172.     char *realloc(pseg, size)
  173.     char *pseg;
  174.     unsigned size;
  175.  
  176. :calloc
  177.     char *calloc(count, sizeEach)
  178.     unsigned count, sizeEach;
  179.  
  180. :_memory
  181.     char *_memory()
  182.  
  183. :_showsp
  184.     char *_showsp()
  185.  
  186. :_setsp
  187.     void _setsp(offset)
  188.     unsigned offset;
  189.  
  190. :_showds
  191.     unsigned _showds()
  192.  
  193. :_showcs
  194.     unsigned _showcs()
  195.  
  196. :_inb
  197.     char _inb(port)
  198.     unsigned port;
  199.  
  200. :_inw
  201.     unsigned _inw(port)
  202.     unsigned port;
  203.  
  204. :_move
  205.     void _move(count, fromOff, toOff)
  206.     unsigned count;
  207.     char *fromOff, *toOff;
  208.  
  209. :_lmove
  210.     void _lmove(count, fromOff, fromSeg, toOff, toSeg)
  211.     unsigned count,
  212.  fromSeg, toSeg;
  213.     char *fromOff, *toOff;
  214.  
  215. :_outb
  216.     void _outb(c, port)
  217.     char c;
  218.     unsigned port;
  219.  
  220. :_outw
  221.     void _outw(u, port)
  222.     unsigned u, port;
  223.  
  224. :_peek
  225.     char _peek(off, seg)
  226.     char *off;
  227.     unsigned seg;
  228.  
  229. :_poke
  230.     void _poke(c, off, seg)
  231.     char c, *off;
  232.     unsigned seg;
  233.  
  234. :_setmem
  235.     void _setmem(off, count, c)
  236.     char *off, c;
  237.     unsigned count;
  238.  
  239. :abs
  240.     unsigned abs(n)
  241.     int n;
  242.  
  243. :acos
  244.     double acos(x)
  245.     double x;
  246.  
  247. :asin
  248.     double asin(x)
  249.     double x;
  250.  
  251. :atan
  252.     double atan(x)
  253.     double x;
  254.  
  255. :ceil
  256.     double ceil(x)
  257.     double x;
  258.  
  259. :cos
  260.     double cos(x)
  261.     double x;
  262.  
  263. :exp
  264.     double exp(x)
  265.     double x;
  266.  
  267. :exp10
  268.     double exp10(x)
  269.     double x;
  270.  
  271. :fabs
  272.     double fabs(x)
  273.     double x;
  274.  
  275. :floor
  276.     double floor(x)
  277.     double x;
  278.  
  279. :log
  280.     double log(x)
  281.     double x;
  282.  
  283. :log10
  284.     double log10(x)
  285.     double x;
  286.  
  287. :pow
  288.     double pow(x)
  289.     double x;
  290.  
  291. :sin
  292.     double sin(x)
  293.     double x;
  294.  
  295. :sqrt
  296.     double sqrt(x)
  297.     double x;
  298.  
  299. :tan
  300.     double tan(x)
  301.     double x;
  302.  
  303. :chain
  304.     void chain(filename, commandTail)
  305.     char *filename, *commandTail;
  306.  
  307. :dates
  308.     void dates(buf)
  309.     char *buf;
  310.  
  311. :_doint
  312.     void _doint(interruptNum)
  313.     int interruptNum;
  314.  
  315. :exec
  316.     int exec(filename, commandTail)
  317.     char *filename, commandTail;
  318.  
  319. :exit
  320.     void exit(completionCode)
  321.     int completionCode;
  322.  
  323. :longjmp
  324.     void longjmp(0, id)
  325.     int id;
  326.  
  327. :moverlay
  328.     int moverlay(overlayNum)
  329.     int overlayNum;
  330.  
  331. :overlay
  332.     int overlay(overlayNum)
  333.     int overlayNum;
  334.  
  335. :overlay_init
  336.     int overlay_init(filename)
  337.     char *filename;
  338.  
  339. :_os
  340.     int _os(ah, dx)
  341.     int ah, dx;
  342.  
  343. :setjmp
  344.     int setjmp(0)
  345.  
  346. :times
  347.     void times(buf)
  348.     char *buf;
  349.  
  350. :isalnum
  351.     int isalnum(c)
  352.     char c;
  353.  
  354. :isalpha
  355.     int isalpha(c)
  356.     char c;
  357.  
  358. :isascii
  359.     int isascii(c)
  360.     char c;
  361.  
  362. :iscntrl
  363.     int iscntrl(c)
  364.     char c;
  365.  
  366. :isdigit
  367.     int isdigit(c)
  368.     char c;
  369.  
  370. :islower
  371.     int islower(c)
  372.     char c;
  373.  
  374. :isupper
  375.     int isupper(c)
  376.     char c;
  377.  
  378. :isprint
  379.     int isprint(c)
  380.     char c;
  381.  
  382. :ispunct
  383.     int ispunct(c)
  384.     char c;
  385.  
  386. :isspace
  387.     int isspace(c)
  388.     char c;
  389.  
  390. :tolower
  391.     char tolower(c)
  392.     char c;
  393.  
  394. :toupper
  395.     char toupper(c)
  396.     char c;
  397.  
  398. :atoi
  399.     int atoi(s)
  400.     char *s;
  401.  
  402. :atof
  403.     double atof(s)
  404.     char *s;
  405.  
  406. :atol
  407.     long atol(s)
  408.     char *s;
  409.  
  410. :index
  411.     char *index(s, c)
  412.     char *s, c;
  413.  
  414. :rindex
  415.     char *rindex(s, c)
  416.     char *s, c;
  417.  
  418. :strcat
  419.     char *strcat(toString, fromString)
  420.     char *toString, *fromString;
  421.  
  422. :strcmp
  423.     int strcmp(leftString, rightString)
  424.     char *leftString, *rightString;
  425.  
  426. :strcpy
  427.     char *strcpy(toString, fromString)
  428.     char *toString, *fromString;
  429.  
  430. :strlen
  431.     unsigned strlen(s)
  432.     char *s;
  433.  
  434. :strncat
  435.     char *strncat(toString, fromString, maxCount)
  436.     char *toString, *fromString;
  437.     int maxCount;
  438.  
  439. :strncmp
  440.     int *strncmp(leftString, rightString, maxCount)
  441.     char *leftString, *rightString;
  442.     int maxCount;
  443.  
  444. :strncpy
  445.     char *strncpy(toString, fromString, maxCount)
  446.     char *toString, *fromString;
  447.     int maxCount;
  448.  
  449. :srand
  450.     void srand(seed)
  451.     int seed;
  452.  
  453. :rand
  454.     unsigned rand()
  455.  
  456. :frand
  457.     double frand()
  458.  
  459. :qsort
  460.     void qsort(array, elementCount, elementSize, compareFunc)
  461.     char *array;
  462.     int elementCount, elementSize, (*compareFunc)();
  463.  
  464. :scr_setup
  465.     void scr_setup()
  466.  
  467. :scr_setmode
  468.     void scr_setmode(mode)
  469.     char mode;
  470.  
  471. :scr_rowcol
  472.     void scr_rowcol(row, col)
  473.     char row, col;
  474.  
  475. :scr_clr
  476.     void scr_clr()
  477.  
  478. :scr_clrl
  479.     void scr_clrl()
  480.  
  481. :scr_cls
  482.     void scr_cls
  483.  
  484. :scr_scup
  485.     void scr_scup()
  486.  
  487. :scr_scrup
  488.     void scr_scrup(numLines, fromRow, fromCol, toRow, toCol)
  489.     char numLines, fromRow, fromCol, toRow, toCol;
  490.  
  491. :scr_scdn
  492.     void scr_scdn()
  493.  
  494. :scr_scrdn
  495.     void scr_scrdn(numLines, fromRow, fromCol, toRow, toCol)
  496.     char numLines, fromRow, fromCol, toRow, toCol;
  497.  
  498. :scr_co
  499.     void scr_co(c)
  500.     char c;
  501.  
  502. :scr_ci
  503.     char scr_ci()
  504.  
  505. :scr_csts
  506.     char scr_csts()
  507.  
  508. :scr_sinp
  509.     char scr_sinp()
  510.  
  511. :scr_cursoff
  512.     void scr_cursoff()
  513.  
  514. :scr_curson
  515.     void scr_curson()