mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
0ad9f559ea
sprintf, vsprintf and strlen now in rua_strings, and strlen now returns int like it should.
12 lines
337 B
C
12 lines
337 B
C
#ifndef __ruamoko_legacy_string_h
|
|
#define __ruamoko_legacy_string_h
|
|
|
|
@extern string ftos (float f);
|
|
@extern string vtos (vector v);
|
|
@extern float stof (string s);
|
|
@extern float charcount (string goal, string s);
|
|
@extern string itos (int i);
|
|
@extern int stoi (string s);
|
|
@extern vector stov (string s);
|
|
|
|
#endif//__ruamoko_legacy_string_h
|