source: buchla-68k/orig/DOC/ALCYONC.TXT

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 4.2 KB
Line 
1_exit Func void _exit(code)
2
3MAX MACRO ..... MAX(x, y)
4MIN MACRO ..... MIN(x, y)
5
6abort Func void abort(code)
7abs MACRO ..... abs(val)
8access Func short access(name, mode)
9atan Func float atan(fval)
10atof Func float atof(string)
11atoi Func short atoi(string)
12atol Func long atol(string)
13
14brk Func short brk(addr)
15
16calloc Func short *calloc(number, size)
17ceil Func float ceil(fval)
18chmod Func short chmod(name, mode)
19chown Func short chown (name, owner, group)
20clearerr MACRO void clearerr(stream)
21close Func short close(fd)
22cos Func float cos(fval)
23creat Func short creat(name, mode)
24creata Func short creata(name, mode)
25creatb Func short creatb(name, mode)
26
27etoa Func char *etoa(fval, buf, prec)
28exit Func void exit(code)
29exp Func float exp(fval)
30
31
32fabs Func float fabs(fval)
33fclose Func short fclose(stream)
34fdopen Func FILE *fdopen(fd, access)
35feof MACRO short feof(stream)
36ferror MACRO short ferror(stream)
37fflush Func short fflush(stream)
38fgetc Func short fgetc(stream)
39fgets Func char *fgets(s, n, stream)
40fileno MACRO short fileno(stream)
41floor Func float floor(fval)
42fmod Func float fmod(x, y)
43fopen Func FILE *fopen(name, access)
44fopena Func FILE *fopena(name, access)
45fopenb Func FILE *fopenb(name, access)
46fprintf Func short fprintf(stream, fmt, arg1, arg2, ..., argn)
47fputc Func short fputc(c, stream)
48fputs Func short fputs(s, stream)
49fread Func short fread(buff, size, nitems, stream)
50free Func void free(addr)
51freopa Func FILE *freopa(name, access, stream)
52freopb Func FILE *freopb(name, access, stream)
53freopen Func FILE *freopen(name, access, stream)
54fscanf Func short fscanf(stream, fmt, arg1, arg2, ..., argn)
55fseek Func short fseek(stream, offset, ptrname)
56ftell Func long ftell(stream)
57ftoa Func char *ftoa(fval, buf, prec)
58fwrite Func short fwrite(buff, size, nitems, stream)
59
60getc MACRO short getc(stream)
61getchar MACRO short getchar()
62getl Func long getl(stream)
63getpass Func char *getpass(prompt)
64getpid Func short getpid()
65gets Func char *gets(s)
66getw Func short getw(stream)
67
68index Func char *index(s, c)
69
70isalnum Func short isalnum(c)
71isalpha Func short isalpha(c)
72isascii Func short isascii(c)
73isatty Func short isatty(fd)
74iscntrl Func short iscntrl(c)
75isdigit Func short isdigit(c)
76islower Func short islower(c)
77isprint Func short isprint(c)
78ispunct Func short ispunct(c)
79isspace Func short isspace(c)
80isuppper Func short isupper(c)
81
82
83log Func float log(fval)
84longjmp Func void longjump(env, ret)
85lseek Func long lseek(fd, offset, ptrname)
86
87malloc Func short *malloc(size)
88max MACRO ..... max(x, y)
89min MACRO ..... min(x, y)
90mktemp Func char *mktemp(string)
91
92open Func short open(name, mode)
93opena Func short opena(name, mode)
94openb Func short openb(name, mode)
95
96perror Func short perror(s)
97pow Func float pow(fmant, fexp)
98printf Func short printf(fmt, arg1, arg2, ..., argn)
99putc MACRO short putc(c, stream)
100putchar MACRO short putchar()
101putl Func long putl(l, stream)
102puts Func short puts(s)
103putw Func short putw(w, stream)
104
105qsort Func short qsort(base, number, size, compare)
106
107rand Func short rand()
108read Func short read(fd, buffer, bytes)
109realloc Func short *realloc(addr, size)
110rewind Func short rewind(stream)
111rindex Func char *rindex(s, c)
112
113sbrk Func char *sbrk(incr)
114scanf Func short scanf(fmt, arg1, arg2, ..., argn)
115setjmp Func short setjmp(env)
116signal Func short signal(sig, func)
117sin Func float sin(fval)
118sinh Func float sinh(fval)
119sprintf Func char *sprintf(string, fmt, arg1, arg2, ..., argn)
120sqrt Func float sqrt(fval)
121srand Func short srand(seed)
122sscanf Func short sscanf(string, fmt, arg1, arg2, ..., argn)
123strcat Func char *strcat(s1, s2)
124strcmp Func short strcmp(s1, s2)
125strcpy Func char *strcpy(s1, s2)
126strlen Func short strlen(s)
127strncat Func char *strncat(s1, s2, n)
128strncmp Func short strncmp(s1, s2, n)
129strncpy Func char *strncpy(s1, s2, n)
130swab Func short swab(from, to, nbytes)
131
132
133tan Func float tan(fval)
134tanh Func float tanh(fval)
135tell Func long tell(fd)
136ttyname Func char *ttyname(fd)
137
138ungetc Func short ungetc(c, stream)
139unlink Func short unlink(name)
140
141write Func short write(fd, buffer, bytes)
Note: See TracBrowser for help on using the repository browser.