]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_cmds.h
fix a few typos in comments
[xonotic/darkplaces.git] / prvm_cmds.h
index 5c9673f0ca0b0d394f717746eef382521b0d6174..fc99f380d6a45bdebfbed7cfc66733466f5ea26f 100644 (file)
@@ -99,7 +99,7 @@ string        search_getfilename(float handle, float num)
 string chr(float ascii)
 
 float  itof(intt ent)
-intt   ftoi(float num)
+entity ftoe(float num)
 
 -------will be removed soon----------
 float  altstr_count(string)
@@ -205,7 +205,6 @@ float       getserverlistindexforkey(string key)
 
 // builtins and other general functions
 
-char *VM_GetTempString(void);
 void VM_CheckEmptyString (const char *s);
 void VM_VarString(int first, char *out, int outlength);
 
@@ -235,7 +234,7 @@ void VM_vtos (void);
 void VM_etos (void);
 void VM_stof(void);
 void VM_itof(void);
-void VM_ftoi(void);
+void VM_ftoe(void);
 void VM_spawn (void);
 void VM_remove (void);
 void VM_find (void);
@@ -270,6 +269,11 @@ void VM_max (void);
 void VM_bound (void);
 void VM_pow (void);
 void VM_copyentity (void);
+void VM_asin (void);
+void VM_acos (void);
+void VM_atan (void);
+void VM_atan2 (void);
+void VM_tan (void);
 
 void VM_Files_Init(void);
 void VM_Files_CloseAll(void);
@@ -289,6 +293,11 @@ void VM_stov(void);
 void VM_strzone(void);
 void VM_strunzone(void);
 
+// DRESK - String Length (not counting color codes)
+void VM_strlennocol(void);
+// DRESK - Decolorized String
+void VM_strdecolorize(void);
+
 void VM_clcommand (void);
 
 void VM_tokenize (void);