Move function declarations after structure declarations

This commit is contained in:
Ben Harris 2024-11-03 17:02:21 +00:00
parent 8b6bfa5298
commit 71addbd605

View File

@ -192,15 +192,6 @@ static int const nweights = sizeof(weights) / sizeof(weights[0]);
struct weight const *weight = &weights[0];
static void dochar(char const data[YSIZE], unsigned flags);
static void dochar_plotter(char const data[YSIZE], unsigned flags);
static void domosaic(unsigned code, bool sep);
static void domosaic4(unsigned code, bool sep);
static void dopanose(void);
static void docmap(int pid, int eid, int format);
static void glyph_complement(void);
static void bdf_gen(int size);
/* U(N) sets the code point and name of a glyph not in AGLFN */
#define U(N) 0x ## N, 0x ## N >= 0x10000 ? "u" #N : "uni" #N
#define ALIAS(alias, canonical) {{.alias_of=canonical},-1,alias,IS_ALIAS}
@ -2628,6 +2619,14 @@ static int const nglyphs = NGLYPHS;
static struct glyph const *glyphs_by_name[NGLYPHS];
static void dochar(char const data[YSIZE], unsigned flags);
static void dochar_plotter(char const data[YSIZE], unsigned flags);
static void domosaic(unsigned code, bool sep);
static void domosaic4(unsigned code, bool sep);
static void dopanose(void);
static void docmap(int pid, int eid, int format);
static void glyph_complement(void);
static void bdf_gen(int size);
static void dolookups(struct glyph const *);
static void doglyph(struct glyph const *);