]> begriffs open source - cmsis-freertos/blob - Demo/ColdFire_MCF52259_CodeWarrior/stdlib.h
Update cmsis_os2.c
[cmsis-freertos] / Demo / ColdFire_MCF52259_CodeWarrior / stdlib.h
1 /*
2  * File:                stdlib.h
3  * Purpose:             Function prototypes for standard library functions
4  *
5  * Notes:
6  */
7
8 #ifndef _STDLIB_H
9 #define _STDLIB_H
10
11 /********************************************************************
12  * Standard library functions
13  ********************************************************************/
14
15 int
16 isspace (int);
17
18 int
19 isalnum (int);
20
21 int
22 isdigit (int);
23
24 int
25 isupper (int);
26
27 int
28 strcasecmp (const char *, const char *);
29
30 int
31 strncasecmp (const char *, const char *, int);
32
33 unsigned long
34 strtoul (char *, char **, int);
35
36 int
37 strlen (const char *);
38
39 char *
40 strcat (char *, const char *);
41
42 char *
43 strncat (char *, const char *, int);
44
45 char *
46 strcpy (char *, const char *);
47
48 char *
49 strncpy (char *, const char *, int);
50
51 int
52 strcmp (const char *, const char *);
53
54 int
55 strncmp (const char *, const char *, int);
56
57 void *
58 memcpy (void *, const void *, unsigned);
59
60 void *
61 memset (void *, int, unsigned);
62
63 void
64 free (void *);
65  
66 void *
67 malloc (unsigned);
68
69 #define RAND_MAX 32767
70
71 int
72 rand (void);
73
74 void
75 srand (int);
76
77 /********************************************************************/
78
79 #endif