source: soft/giet_vm/giet_libs/stdlib.h @ 681

Last change on this file since 681 was 681, checked in by guerin, 9 years ago

stdlib: fix warning

File size: 3.1 KB
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////////////////////////////////////////////////////////////////////////////////////////
12// This function translates a character string to a signed integer. 
13// For a negative value, the first character must be a '-' (minus) character.
14////////////////////////////////////////////////////////////////////////////////////////
15int atoi ( const char * str );
16
17////////////////////////////////////////////////////////////////////////////////////////
18// This function translate a character string to a double. 
19// For a negative value, the first character must be a '-' (minus) character.
20////////////////////////////////////////////////////////////////////////////////////////
21double atof ( const char * str );
22
23////////////////////////////////////////////////////////////////////////////////////////
24// This function copies size bytes from the src source buffer
25// to the dst destination buffer.
26// GCC requires this function. Taken from MutekH.
27////////////////////////////////////////////////////////////////////////////////////////
28void* memcpy( void*         dst, 
29              const void*   src, 
30              unsigned int  size );
31
32////////////////////////////////////////////////////////////////////////////////////////
33// This function initializes size bytes in the dst destination buffer,
34// with the value defined by (char)s.
35// GCC requires this function. Taken from MutekH.
36////////////////////////////////////////////////////////////////////////////////////////
37void* memset( void*        dst,
38              int          s,
39              unsigned int size );
40
41////////////////////////////////////////////////////////////////////////////////////////
42// This function returns the number of characters in a string.
43// The terminating NUL character is not taken into account.
44////////////////////////////////////////////////////////////////////////////////////////
45unsigned 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////////////////////////////////////////////////////////////////////////////////////////
52unsigned 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////////////////////////////////////////////////////////////////////////////////////////
59char* strcpy( char* dest,
60              char* source );
61
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
Note: See TracBrowser for help on using the repository browser.