Annotation of coherent/b/lib/libc/string/strcoll.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * strcoll.c
                      3:  * ANSI 4.11.4.3.
                      4:  * Lexicographic comparison of two strings, locale-specific.
                      5:  * This version is identical to strcmp().
                      6:  */
                      7: 
                      8: #include <string.h>
                      9: 
                     10: int strcoll(s1, s2) register char *s1, *s2;
                     11: {
                     12:        return(strcmp(s1, s2));
                     13: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.