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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* Copyright (C) 2014 jaseg <github@jaseg.net>
*
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
* Version 2, December 2004
*
* Everyone is permitted to copy and distribute verbatim or modified
* copies of this license document, and changing it is allowed as long
* as the name is changed.
*
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
* TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
*
* 0. You just DO WHAT THE FUCK YOU WANT TO.
*/
#define _GNU_SOURCE //for fmemopen
#include <stdint.h>
#include <stdio.h>
#include <wchar.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <unistd.h>
#include <sys/time.h>
int main(int argc, char **argv){
char **inputs = argv+1;
char **inputs_end = argv+argc;
if(inputs == inputs_end){
char *foo[] = {"-"};
inputs = foo;
inputs_end = inputs+1;
}
setlocale(LC_ALL, "");
for(char **filename=inputs; filename<inputs_end; filename++){
FILE *f = stdin;
if(strcmp(*filename, "-"))
f = fopen(*filename, "r");
if(!f){
fprintf(stderr, "Cannot open input file \"%s\": %s\n", *filename, strerror(errno));
return 2;
}
int c;
while((c = fgetwc(f)) > 0){
if(strchr("acegmnopqrsuvwxyz", c))
printf("▄");
else if(strchr(".,:; \t\r\n", c))
printf("%lc", c);
else
printf("█");
}
fclose(f);
if(c != WEOF && c != 0){
fprintf(stderr, "Error reading input file \"%s\": %s\n", *filename, strerror(errno));
return 2;
}
}
}
|