view TOOLS/subfont-c/osd/gen_osd_h.c @ 9316:7a0d466a51a8

The patch add a library detection to configure and the usage of the detected libraries in Makefile. based on patch by Alexander.Gottwald@informatik.tu-chemnitz.de
author arpi
date Fri, 07 Feb 2003 18:56:55 +0000
parents 9a754317898e
children
line wrap: on
line source

#include <stdio.h>

int main()
{
    int c;
    int cnt;
    printf("unsigned char osd_font_pfb[] = {");
    for (cnt = 0;;cnt++) {
	if (cnt % 16 == 0) printf("\n");
	c = getchar();
	if (c < 0) break;
	printf("0x%02x,", c);
    }
    printf("};\n");
}