2002-08-15 21:00:51 +00:00
|
|
|
#ifndef __ruamoko_string_h
|
|
|
|
#define __ruamoko_string_h
|
2002-08-15 06:56:37 +00:00
|
|
|
|
|
|
|
@extern string (float f) ftos;
|
|
|
|
@extern string (vector v) vtos;
|
|
|
|
@extern float (string s) stof;
|
|
|
|
@extern float (string s) strlen;
|
|
|
|
@extern float (string goal, string s) charcount;
|
|
|
|
@extern string (...) sprintf;
|
|
|
|
@extern string (integer i) itos;
|
|
|
|
@extern integer (string s) stoi;
|
|
|
|
@extern vector (string s) stov;
|
|
|
|
|
2004-01-07 07:36:17 +00:00
|
|
|
@extern string (void) str_new;
|
|
|
|
@extern string (string str) str_free;
|
|
|
|
@extern string (string dst, string src) str_copy;
|
|
|
|
@extern string (string str) str_clear;
|
|
|
|
|
2002-08-15 21:00:51 +00:00
|
|
|
#endif//__ruamoko_string_h
|