File: brl-8x8.c

package info (click to toggle)
console-braille 1.9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 332 kB
  • sloc: ansic: 1,869; pascal: 100; makefile: 34
file content (39 lines) | stat: -rw-r--r-- 1,119 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *  Copyright (C) Samuel Thibault <samuel.thibault@ens-lyon.org>
 *
 * This program is free software ; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation ; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY ; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the program ; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#define DESSIN 0,x,x,0,y,y,0,0
#include <stdio.h>
#include "psf.h"
#include "do.h"
int main(void) {
  int i;
  header(8, 8, 256, 1);
  for (i=0;i<256;i++) {
    DO_DOTS(1,4);
    DO_SPC();
    DO_DOTS(2,5);
    DO_SPC();
    DO_DOTS(3,6);
    DO_SPC();
    DO_DOTS(7,8);
    DO_SPC();
  }
  for (i=0;i<256;i++)
    sfm(0x2800+i);
  return 0;
}