mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
6f1dd54e99
cleaned up: most of the stuff in it should /not/ be in the standard library
14 lines
387 B
C
14 lines
387 B
C
#ifndef __ruamoko_string_h
|
|
#define __ruamoko_string_h
|
|
|
|
@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;
|
|
|
|
#endif//__ruamoko_string_h
|