File: brl-14x10.c

package info (click to toggle)
console-braille 1.7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 344 kB
  • sloc: ansic: 1,869; pascal: 100; makefile: 34
file content (45 lines) | stat: -rw-r--r-- 1,256 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
40
41
42
43
44
45
/*
 *  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 DESSIN1 0,x,x,x,0,y,y,y,0,0,    0,0,0,0,0,0
#include <stdio.h>
#include "psf.h"
#include "do.h"
int main(void) {
  int i;
  header(10, 14, 256, 1);
  for (i=0;i<256;i++) {
    DO_SPC2();
    DO_DOTS1(1,4);
    DO_DOTS1(1,4);
    DO_SPC2();
    DO_DOTS1(2,5);
    DO_DOTS1(2,5);
    DO_SPC2();
    DO_DOTS1(3,6);
    DO_DOTS1(3,6);
    DO_SPC2();
    DO_DOTS1(7,8);
    DO_DOTS1(7,8);
    DO_SPC2();
    DO_SPC2();
  }
  for (i=0;i<256;i++)
    sfm(0x2800+i);
  return 0;
}