14#include "arcane/utils/ArcanePrecomp.h"
16#include "arcane/utils/StdHeader.h"
17#include "arcane/utils/ValueConvert.h"
18#include "arcane/utils/CStringUtils.h"
19#include "arcane/utils/Iostream.h"
30toReal(
const char* str,
bool* is_ok)
33 bool is_bad = builtInGetValue(v,str);
41toInteger(
const char* str,
bool* is_ok)
44 bool is_bad = builtInGetValue(v,str);
52toInt(
const char* str,
bool* is_ok)
55 bool is_bad = builtInGetValue(v,str);
63isEqual(
const char* s1,
const char* s2)
79isLess(
const char* s1,
const char* s2)
85 return (::strcmp(s1,s2) < 0);
101copyn(
char* to,
const char* from,
Integer n)
103 return ::strncpy(to,from,n);
107copy(
char* to,
const char* from)
109 return ::strcpy(to,from);
115extern "C++" ARCANE_UTILS_EXPORT
void
116initializeStringConverter()
Integer len(const char *s)
Retourne la longueur de la chaîne s.
Int32 Integer
Type représentant un entier.
double Real
Type représentant un réel.