added natives

This commit is contained in:
David Anderson
2004-04-03 20:05:27 +00:00
parent 205f3734cd
commit 8ef66cee8c
2 changed files with 49 additions and 3 deletions

View File

@ -71,8 +71,8 @@ native parse(const text[], ... );
(A left side and right side of the string)
Example: to split text: "^"This is^" the best year",
split(text, arg1, len1, arg2, len2)
arg1="^"This is^"", arg2="the best year"
This more useful than parse() because you can keep breaking
arg1="This is", arg2=the best year
This is more useful than parse() because you can keep breaking
any number of arguments */
native strbreak(const text[], Left[], leftLen, Right[], rightLen);