OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [trunk/] [hwtests/] [kbdtest/] [lib.h] - Blame information for rev 14

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 hellwig
/*
2
 * lib.h -- the library
3
 */
4
 
5
 
6
#ifndef _LIB_H_
7
#define _LIB_H_
8
 
9
 
10
void debugBreak(void);
11
 
12
int strlen(const char *s);
13
int strcmp(const char *s, const char *t);
14
char *strcpy(char *s, const char *t);
15
char *strcat(char *s, const char *t);
16
char *strchr(const char *s, char c);
17
char *strtok(char *s, const char *t);
18
 
19
unsigned long strtoul(const char *s, char **endp, int base);
20
 
21
void qsort(void *base, int n, int size,
22
           int (*cmp)(const void *, const void *));
23
 
24
char getchar(void);
25
void putchar(char c);
26
 
27
int printf(const char *fmt, ...);
28
int sprintf(char *s, const char *fmt, ...);
29
 
30
 
31
#endif /* _LIB_H_ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.