mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
13 lines
337 B
C
13 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
|