GNU Unifont 17.0.01
Pan-Unicode font with complete Unicode Plane 0 coverage and partial coverage of higher planes
unidup.c File Reference

unidup - Check for duplicate code points in sorted unifont.hex file More...

#include <stdio.h>
#include <stdlib.h>
Include dependency graph for unidup.c:

Go to the source code of this file.

Macros

#define MAXBUF   256
 Maximum input line length - 1.
 

Functions

int main (int argc, char **argv)
 The main function.
 

Detailed Description

unidup - Check for duplicate code points in sorted unifont.hex file

Author
Paul Hardy, unifoundry <at> unifoundry.com, December 2007

This program reads a sorted list of glyphs in Unifont .hex format and prints duplicate code points on stderr if any were detected.

Synopsis: unidup < unifont_file.hex

      [Hopefully there won't be any output!]

Definition in file unidup.c.

Macro Definition Documentation

◆ MAXBUF

#define MAXBUF   256

Maximum input line length - 1.

Definition at line 43 of file unidup.c.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

The main function.

Parameters
[in]argcThe count of command line arguments.
[in]argvPointer to array of command line arguments.
Returns
This program exits with status 0.

Definition at line 54 of file unidup.c.

55{
56
57 int ix, iy; /* two code points to compare for equality */
58 char inbuf[MAXBUF];
59 char *infile; /* the input file name */
60 FILE *infilefp; /* file pointer to input file */
61
62 if (argc > 1) {
63 infile = argv[1];
64 if ((infilefp = fopen (infile, "r")) == NULL) {
65 fprintf (stderr, "\nERROR: Can't open file %s\n\n", infile);
66 exit (EXIT_FAILURE);
67 }
68 }
69 else {
70 infilefp = stdin;
71 }
72
73 ix = -1;
74
75 while (fgets (inbuf, MAXBUF-1, infilefp) != NULL) {
76 sscanf (inbuf, "%X", (unsigned *)&iy);
77 if (ix == iy) fprintf (stderr, "Duplicate code point: %04X\n", ix);
78 else ix = iy;
79 }
80 exit (0);
81}
#define MAXBUF
Maximum input line length - 1.
Definition: unidup.c:43