diff options
Diffstat (limited to 'util/szap')
-rw-r--r-- | util/szap/Makefile | 4 | ||||
-rw-r--r-- | util/szap/azap.c | 392 |
2 files changed, 394 insertions, 2 deletions
diff --git a/util/szap/Makefile b/util/szap/Makefile index 688c5d7..680793c 100644 --- a/util/szap/Makefile +++ b/util/szap/Makefile @@ -3,8 +3,8 @@ CFLAGS = -MD -Wall -g -O2 -I../../include -I../lib LFLAGS = -Wall -g -O2 RM = rm -f -TARGETS = szap tzap czap femon -OBJS = szap.o tzap.o czap.o femon.o +TARGETS = szap tzap czap azap femon +OBJS = szap.o tzap.o czap.o azap.o femon.o all: $(OBJS) $(TARGETS) @echo diff --git a/util/szap/azap.c b/util/szap/azap.c new file mode 100644 index 0000000..14a1c6a --- /dev/null +++ b/util/szap/azap.c @@ -0,0 +1,392 @@ +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/ioctl.h> +#include <unistd.h> +#include <stdlib.h> +#include <stdint.h> +#include <string.h> +#include <stdio.h> +#include <fcntl.h> +#include <ctype.h> +#include <errno.h> + +#include <linux/dvb/ |