home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat125.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <string.h>
-
- void main()
- {
- char *s1 = "abCCC";
- char *s2 = "AbccC";
-
- int status;
-
- status = memicmp(s2, s1, strlen(s2));
- if (status > 0)
- printf("╜w╜─░╧ 2--%s ñj⌐≤ ╜w╜─░╧ 1--%s\n",s2,s1);
- else if (status < 0)
- printf("╜w╜─░╧ 2--%s ñp⌐≤ ╜w╜─░╧ 1--%s\n",s2,s1);
- else
- printf("╜w╜─░╧ 2--%s ╡Ñ⌐≤ ╜w╜─░╧ 1--%s\n",s2,s1);
- }