Lines Matching defs:callback
70 struct callback { struct
71 void *(*memcpy) __P((void *s1, void *s2, int n)); /* 00 */
72 void *(*memset) __P((void *s1, int c, int n)); /* 04 */
73 char *(*strcat) __P((char *s1, char *s2)); /* 08 */
74 int (*strcmp) __P((char *s1, char *s2)); /* 0c */
75 char *(*strcpy) __P((char *s1, char *s2)); /* 10 */
76 int (*strlen) __P((char *s1)); /* 14 */
77 char *(*strncat) __P((char *s1, char *s2, int n)); /* 18 */
78 char *(*strncpy) __P((char *s1, char *s2, int n)); /* 1c */
79 int (*strncmp) __P((char *s1, char *s2, int n)); /* 20 */
80 int (*getchar) __P((void)); /* 24 */
81 char *(*gets) __P((char *s)); /* 28 */
82 int (*puts) __P((char *s)); /* 2c */
83 int (*printf) __P((char *fmt, ...)); /* 30 */
84 int (*sprintf) __P((char *s, char *fmt, ...)); /* 34 */
85 int (*io_poll) __P((void)); /* 38 */
86 long (*strtol) __P((char *s, char **endptr, int base)); /* 3c */
88 int (*raise) __P((int sig)); /* 44 */
89 long (*time) __P((long *tod)); /* 48 */
90 int (*setjmp) __P((jmp_buf env)); /* 4c */
91 void (*longjmp) __P((jmp_buf env, int value)); /* 50 */
92 int (*bootinit) __P((void)); /* 54 */
93 int (*bootread) __P((int b, void *buffer, int n)); /* 58 */
94 int (*bootwrite) __P((int b, void *buffer, int n)); /* 5c */
118 extern const struct callback *callv; argument