26.07.2010, 16:36
You mean you want to make user defined functions with arguments?
When you call it;
Код:
forward SomeFunction(string1[],string2[]); public SomeFunction(string1[],string2[]) { printf("%s",string1); printf("%s",string2); }
Код:
new stri1[128],stri2[128]; format(stri1,128,"Bla"); format(stri2,128,"Bla2"); SomeFunction(str1,str2);