* strcmp() */
| 310 | * strcmp() |
| 311 | */ |
| 312 | static int e9strcmp(const char *s1, const char *s2) |
| 313 | { |
| 314 | for (; *s1 == *s2 && *s1 != '\0'; s1++, s2++) |
| 315 | ; |
| 316 | return (int)*s2 - (int)*s1; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Find a function from a DLL (a.k.a. GetProcAddress). |