[259] | 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 | |
---|
[382] | 11 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[647] | 12 | // This function translates a character string to a signed integer. |
---|
[382] | 13 | // For a negative value, the first character must be a '-' (minus) character. |
---|
| 14 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[580] | 15 | int atoi ( const char * str ); |
---|
[271] | 16 | |
---|
| 17 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[580] | 18 | // This function translate a character string to a double. |
---|
| 19 | // For a negative value, the first character must be a '-' (minus) character. |
---|
| 20 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 21 | double atof ( const char * str ); |
---|
| 22 | |
---|
| 23 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 24 | // This function copies size bytes from the src source buffer |
---|
| 25 | // to the dst destination buffer. |
---|
[271] | 26 | // GCC requires this function. Taken from MutekH. |
---|
| 27 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 28 | void* memcpy( void* dst, |
---|
| 29 | const void* src, |
---|
| 30 | unsigned int size ); |
---|
[271] | 31 | |
---|
| 32 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 33 | // This function initializes size bytes in the dst destination buffer, |
---|
| 34 | // with the value defined by (char)s. |
---|
[271] | 35 | // GCC requires this function. Taken from MutekH. |
---|
| 36 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[681] | 37 | void* memset( void* dst, |
---|
| 38 | int s, |
---|
| 39 | unsigned int size ); |
---|
[356] | 40 | |
---|
[647] | 41 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 42 | // This function returns the number of characters in a string. |
---|
| 43 | // The terminating NUL character is not taken into account. |
---|
| 44 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 45 | unsigned int strlen( char* string ); |
---|
| 46 | |
---|
| 47 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 48 | // This function compare the two s1 & s2 strings. |
---|
| 49 | // It returns 0 if strings are identical (including the terminating NUL character). |
---|
| 50 | // It returns 1 if they are not. |
---|
| 51 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 52 | unsigned int strcmp( char* s1, |
---|
| 53 | char* s2 ); |
---|
| 54 | |
---|
| 55 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 56 | // This function copies the source string to the dest string. |
---|
| 57 | // It returns a pointer on the dest string. |
---|
| 58 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
| 59 | char* strcpy( char* dest, |
---|
| 60 | char* source ); |
---|
| 61 | |
---|
[259] | 62 | #endif |
---|
| 63 | |
---|
| 64 | // Local Variables: |
---|
| 65 | // tab-width: 4 |
---|
| 66 | // c-basic-offset: 4 |
---|
| 67 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 68 | // indent-tabs-mode: nil |
---|
| 69 | // End: |
---|
| 70 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|