static bool plottermode = false;
-static char * get_fullname()
+static char *
+get_fullname(void)
{
#define FULLNAME_MAX 100
static char fullname[FULLNAME_MAX];
return fullname;
}
-static char * fullname_to_fontname(char const *fullname)
+static char *
+fullname_to_fontname(char const *fullname)
{
#define FONTNAME_MAX 29 /* Adobe-recommended limit */
static char fontname[FONTNAME_MAX + 1], *op = fontname;
return strcmp(a->name, b->name);
}
-static int compare_glyph_to_name(const void *vn, const void *vg)
+static int
+compare_glyph_to_name(const void *vn, const void *vg)
{
struct glyph const * const *gp = vg;
struct glyph const *g = *gp;
return strcmp(name, g->name);
}
-static struct glyph const *get_glyph_by_name(char const *name)
+static struct glyph const *
+get_glyph_by_name(char const *name)
{
struct glyph const * const *gp;
}
static void
-dopanose()
+dopanose(void)
{
/*
* PANOSE is a complex font categorisation scheme. I suspect
static int nextpoint;
static void
-clearpath()
+clearpath(void)
{
nextpoint = 0;
}
static void
-closepath()
+closepath(void)
{
struct point *p = &points[nextpoint - 1];
}
static void
-clean_path()
+clean_path(void)
{
int i, j;
}
static void
-emit_path()
+emit_path(void)
{
int i, pass;
point *p;
* correctly for the range (2 * XQTR_S - 1) < weight < (2 * XQTR_S).
*/
static void
-adjust_weight()
+adjust_weight(void)
{
int i, X, Y, PX, PY, NX, NY, W = weight->weight;
point *p;