URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [shpart/] [iolib.h] - Rev 258
Go to most recent revision | Compare with Previous | Blame | View Log
/* * iolib.h -- I/O library */ #ifndef _IOLIB_H_ #define _IOLIB_H_ int strlen(char *str); void strcpy(char *dst, char *src); void memcpy(unsigned char *dst, unsigned char *src, unsigned int cnt); char getchar(void); void putchar(char c); void putString(char *s); void getLine(char *prompt, char *line, int max); void vprintf(char *fmt, va_list ap); void printf(char *fmt, ...); #endif /* _IOLIB_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log