SysIo  1.9.0
Embedded Library and tools
string.h
1 
8 #ifndef _SYSIO_STRING_H_
9 #define _SYSIO_STRING_H_
10 
11 #include <string.h>
12 #include <sysio/defs.h>
13 #ifdef __cplusplus
14  extern "C" {
15 #endif
16 /* ========================================================================== */
17 
25 /* internal public functions ================================================ */
31 char * strlwr (char * str);
32 
38 char * strupr (char * str);
39 
46 char * strcpylwr (char * dst, const char * src);
47 
54 char * strcpyupr (char * dst, const char * src);
55 
68 int iStrToLong (const char * str, long * n, int base);
69 
82 int iStrToLongLong (const char * str, long long * n, int base);
83 
92 int iStrToDouble (const char * str, double * n);
93 
99 #if !defined(__DOXYGEN__)
100 // -----------------------------------------------------------------------------
101 // -----------------------------------------------------------------------------
102 #endif /* !defined(__DOXYGEN__) */
103 
104 /* ========================================================================== */
105 #ifdef __cplusplus
106  }
107 #endif
108 #endif /*_SYSIO_STRING_H_ defined */
int iStrToDouble(const char *str, double *n)
Convertion d&#39;un string en double.
int iStrToLong(const char *str, long *n, int base)
Convertion d&#39;un string en entier long.
char * strlwr(char *str)
Convertit une chaîne de caractères en minuscules.
char * strupr(char *str)
Convertit une chaîne de caractères en majuscules.
int iStrToLongLong(const char *str, long long *n, int base)
Convertion d&#39;un string en entier très long.
char * strcpyupr(char *dst, const char *src)
Copie une chaîne de caractères en majuscules.
char * strcpylwr(char *dst, const char *src)
Copie une chaîne de caractères en minuscules.