EXAMPLE

/* the builtin string compare function */

        LONG __asm cmpfunc(_a1 char *s1,_a2 char *s2)
{
   return(stricmp(s1,s2));
}