aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/utils/rawplayer.c
blob: 61944a885c7ac02f818bb3c11208f1a3e12f3bf8 (plain)
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
/*
  Rawplayer.c simple raw file stdout player
  (c) Anthony C Minessale II <anthmct@yahoo.com>
*/

#define BUFLEN 320
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

static int deliver_file(char *path, int fdout) {
	int fd = 0, bytes = 0;
	short buf[BUFLEN];

	if ((fd = open(path,O_RDONLY))) {
		while ((bytes=read(fd, buf, BUFLEN))) {
			write(fdout, buf, bytes);
		}
		if(fd)
			close(fd);
	} else 
		return -1;
	
	return 0;
}


int main(int argc, char *argv[]) {
	int x = 0, fdout = 0;
	fdout = fileno(stdout);
	for (;;)
		for (x = 1; x < argc ; x++) {
			if(deliver_file(argv[x], fdout))
				exit(1);
		}
}