Specifications
Saturn String Manipulation Functions 6-3
Psy-Q Development System
STRCMP
Description A function which compares two text strings in the brackets, and returns true if they
match, otherwise it returns false.
Syntax STRCMP(string1,string2)
See Also STRLEN
Remarks When comparing two text strings, the STRCMP function starts numbering the
characters in the target texts from one.
Examples Vers equ "Acs"
...
if strcmp("\Vers","Sales")
move.w Sa1ind, d0
else
if strcmp("\Vers","Acs")
move.w AcInd,d0
else
if strcmp("\Vers","Test")
move.w TstInd, d0
endif
endif
endif