mirror of
https://bjh21.me.uk/bedstead/.git
synced 2026-07-10 14:03:06 -04:00
Move function declarations after structure declarations
This commit is contained in:
parent
8b6bfa5298
commit
71addbd605
17
bedstead.c
17
bedstead.c
@ -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 *);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user