/* * UNG's Not GNU * * Copyright (c) 2011-2019, Jakob Kaivo * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #define _POSIX_C_SOURCE 2 #include #include #include #include #include #include #include #include FILE *fileopen(const char *path) { if (!strcmp(path, "-")) { return stdin; } FILE *f = fopen(path, "rb"); if (f == NULL) { fprintf(stderr, "cmp: %s: %s\n", path, strerror(errno)); exit(1); } return f; } int main(int argc, char *argv[]) { setlocale(LC_ALL, ""); int c; enum { FIRSTONLY, ALL, SILENT } output = FIRSTONLY; while ((c = getopt(argc, argv, "ls")) != EOF) { switch (c) { case 'l': output = ALL; break; case 's': output = SILENT; break; default: return 1; } } if (optind != argc - 2) { fprintf(stderr, "cmp: missing operand\n"); return 1; } char *file1 = argv[optind++]; char *file2 = argv[optind]; FILE *f1 = fileopen(file1); FILE *f2 = fileopen(file2); if (f1 == stdin && f2 == stdin) { fprintf(stderr, "cmp: Comparing stdin to itself is undefined\n"); return 1; } struct stat st1; fstat(fileno(f1), &st1); if (S_ISBLK(st1.st_mode) || S_ISCHR(st1.st_mode) || S_ISFIFO(st1.st_mode)) { struct stat st2; fstat(fileno(f2), &st2); if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino) { fprintf(stderr, "cmp: Comparing special file to itself is undefined\n"); return 1; } } intmax_t byte = 0; intmax_t line = 1; while (++byte) { int c1 = fgetc(f1); int c2 = fgetc(f2); if (c1 == c2) { if (c1 == EOF) { return 0; } if (c1 == '\n') { line++; } continue; } if (c1 == EOF && output != SILENT) { fprintf(stderr, "cmp: EOF on %s\n", file1); } else if (c2 == EOF && output != SILENT) { fprintf(stderr, "cmp: EOF on %s\n", file2); } else if (output == ALL) { printf("%zd %hho %hho\n", byte, c1, c2); continue; } else if (output != SILENT) { printf("%s %s differ: char %zd, line %zd\n", file1, file2, byte, line); } return 1; } return 0; }