mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
b3f76e1e48
temporary strings) and fix the game load/save menus.
19 lines
546 B
C
19 lines
546 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;
|
|
|
|
@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;
|
|
|
|
#endif//__ruamoko_string_h
|