File: tripping.c

package info (click to toggle)
rc 1.7.2-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,084 kB
  • ctags: 1,050
  • sloc: ansic: 7,631; sh: 1,123; yacc: 124; makefile: 100; perl: 13
file content (45 lines) | stat: -rw-r--r-- 713 bytes parent folder | download | duplicates (8)
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;
}