summaryrefslogtreecommitdiff
path: root/src/bin/fontdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/fontdump.c')
-rw-r--r--src/bin/fontdump.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/bin/fontdump.c b/src/bin/fontdump.c
new file mode 100644
index 0000000..eb481d0
--- /dev/null
+++ b/src/bin/fontdump.c
@@ -0,0 +1,19 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc,char *argv[]) {
+ int i,j,k;
+ int height=argc>1?atoi(argv[1]):8;
+ char *map=malloc(height);
+ for(i=0;i<256;i++) {
+ printf("0x%02x (%3d) '%c'\n",i,i,isprint(i)?i:'?');
+ read(0,map,height);
+ for(j=0;j<height;j++) {
+ for(k=7;k>=0;k--) {
+ printf("%c",(map[j]>>k&1)?'#':' ');
+ }
+ printf("\n");
+ }
+ }
+ return 0;
+}