]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_cmds.c
strcat(): update QC defs to match implementation
[xonotic/darkplaces.git] / prvm_cmds.c
index e8c54bb2fe9a045eae0ea214b3f4f633d4632d57..0d281e62ce7f9672edcd6da82f0a6bb5af5c56c2 100644 (file)
@@ -2322,11 +2322,11 @@ void VM_strtoupper(prvm_prog_t *prog)
 =========
 VM_strcat
 
-string strcat(string,string,...[string])
+string strcat(string s, string...)
 =========
 */
-//string(string s1, string s2) strcat = #115;
-// concatenates two strings (for example "abc", "def" would return "abcdef")
+//string(string s, string...) strcat = #115;
+// concatenates strings (for example "abc", "def" would return "abcdef")
 // and returns as a tempstring
 void VM_strcat(prvm_prog_t *prog)
 {