chiark / gitweb /
Move function declarations after structure declarations
authorBen Harris <bjh21@bjh21.me.uk>
Sun, 3 Nov 2024 17:02:21 +0000 (17:02 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Thu, 14 Nov 2024 22:27:18 +0000 (22:27 +0000)
bedstead.c

index 3af9c02e4afc9a4d42de52d263530359f83e6acf..706adf1b191d83e95eab4e33b794d3e616106aa9 100644 (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 *);