9
mb_sio.h
- #ifndef _MB_SIO_H
- #define _MB_SIO_H
- #include <sys/types.h>
- #ifdef __STDC__
- extern int s_read( int s, u_char *buf, int len );
- extern int s_write( int s, u_char *buf, int len );
- extern int s_getc( int s );
- extern int s_getuint( int s );
- extern char *s_getident( int s );
- #else
- extern int s_read();
- extern int s_write();
- extern int s_getc();
- extern int s_getuint();
- extern char *s_getident();
- #endif
- #endif
Comments