Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : stdlib.h |
---|
3 | // Date : 05/12/2013 |
---|
4 | // Author : Clément DEVIGNE |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _STDLIB_H |
---|
9 | #define _STDLIB_H |
---|
10 | |
---|
11 | int atoi (char * str); |
---|
12 | |
---|
13 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
14 | // mempcy() |
---|
15 | // GCC requires this function. Taken from MutekH. |
---|
16 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
17 | void * memcpy(void *_dst, const void * _src, unsigned int size); |
---|
18 | |
---|
19 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
20 | // memset() |
---|
21 | // GCC requires this function. Taken from MutekH. |
---|
22 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
23 | inline void * memset(void * dst, int s, unsigned int count); |
---|
24 | |
---|
25 | #endif |
---|
26 | |
---|
27 | // Local Variables: |
---|
28 | // tab-width: 4 |
---|
29 | // c-basic-offset: 4 |
---|
30 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
31 | // indent-tabs-mode: nil |
---|
32 | // End: |
---|
33 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
Note: See
TracBrowser
for help on using the repository browser.