summaryrefslogtreecommitdiff
path: root/Build/source/libs/zziplib/zziplib-0.13.58/SDL/SDL_rwops_zzcat.c
blob: d8706b1da2963da129f218014d5930773d1de045 (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
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
/*
 *      Copyright (c) 2001 Guido Draheim <guidod@gmx.de>
 *      Use freely under the restrictions of the ZLIB License
 *
 *      (this example uses errno which might not be multithreaded everywhere)
 */

#include <SDL_rwops_zzip.h>
#include <stdlib.h> /* exit */

/* mostly a copy from zzcat.c */

int main (int argc, char** argv)
{
    static const char usage[] =
	" zzcat <file>... \n"
	"  - prints the file to stdout. the file can be a normal file\n"
	"  or an inflated part of a zip-archive \n"
	;

    int argn;
    if (argc <= 1)
    {
        printf (usage);
        exit (0);
    }

    for (argn=1; argn < argc; argn++)
    {
	SDL_RWops* rwops;

	rwops = SDL_RWFromZZIP (argv[argn], "rb");
        if (! rwops)
        {
	    perror (argv[argn]);
            continue;
        }else{
            char buf[17];
            int n;

            /* read chunks of 16 bytes into buf and print them to stdout */
            while (0 < (n = SDL_RWread(rwops, buf, 1, 16)))
            {
                buf[n] = '\0';
#             ifdef STDOUT_FILENO
                write (STDOUT_FILENO, buf, n);
#             else
                fwrite (buf, 1, n, stdout);
#             endif
            }

            if (n == -1)
                perror (argv[argn]);

	    SDL_RWclose (rwops);
        }
    }

    return 0;
}