forked from rakitzis/rc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtripping.c
More file actions
45 lines (38 loc) · 713 Bytes
/
tripping.c
File metadata and controls
45 lines (38 loc) · 713 Bytes
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
/* This is an auxiliary test program for rc. */
#include "config.h"
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
static void out0(void) {
putchar('t'); putchar('r');
putchar('\0');
putchar('u'); putchar('e');
putchar('\n');
}
static void ctrl_a(void) {
puts("a\001ab\002b");
}
static void makenonblock(void) {
int flags;
if ((flags = fcntl(0, F_GETFL)) == -1)
perror("fcntl 1");
flags |= O_NONBLOCK;
if (fcntl(0, F_SETFL, (long) flags) == -1)
perror("fcntl 2");
}
int main(int argc, char **argv) {
switch(argv[1][0]) {
case '0':
out0();
break;
case 'a':
ctrl_a();
break;
case 'n':
makenonblock();
break;
}
return 0;
}