diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2011-01-08 16:31:55 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2011-01-08 16:31:55 +0000 |
| commit | 0b6b69caaa4de4cd3bf5a2e2ebb1a94b1132e823 (patch) | |
| tree | 4846fe3e800834b33783921688014c7b9cd2ee69 /branch-3.0-2011/src/dump_compose.c | |
| parent | 2dc664935d8109767c2d107c6b644082fe06ac05 (diff) | |
Accidentaly copied here
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8219 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'branch-3.0-2011/src/dump_compose.c')
| -rw-r--r-- | branch-3.0-2011/src/dump_compose.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/branch-3.0-2011/src/dump_compose.c b/branch-3.0-2011/src/dump_compose.c deleted file mode 100644 index fe41991cf..000000000 --- a/branch-3.0-2011/src/dump_compose.c +++ /dev/null @@ -1,26 +0,0 @@ -/* write out the documentation for the compose key */ - -/* copy the string from Fl_Input.C */ -static const char* const compose_pairs = -" ! @ # $ y=| & : c a <<~ - r _ * +-2 3 ' u p . , 1 o >>141234? " -"A`A'A^A~A:A*AEC,E`E'E^E:I`I'I^I:D-N~O`O'O^O~O:x O/U`U'U^U:Y'DDss" -"a`a'a^a~a:a*aec,e`e'e^e:i`i'i^i:d-n~o`o'o^o~o:-:o/u`u'u^u:y'ddy:"; - -#include <stdio.h> - -int main() { - int x,y; - for (x = 0; x<16; x++) { - for (y = 0; y<6; y++) { - const char *p = compose_pairs + (16*y+x)*2; - if (p[1] == ' ') - printf("<td><code>%c </code>   %c\n", - p[0],(p-compose_pairs)/2+0xA0); - else - printf("<td><code>%c%c</code>   %c\n", - p[0],p[1],(p-compose_pairs)/2+0xA0); - } - printf("<tr>"); - } - return 0; -} |
