File: zlib.h

package info (click to toggle)
pycparser 2.23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,760 kB
  • sloc: python: 10,091; ansic: 1,981; makefile: 18; sh: 11
file content (33 lines) | stat: -rw-r--r-- 514 bytes parent folder | download | duplicates (3)
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
#ifndef ZLIB_H
#define ZLIB_H

#include "_fake_defines.h"
#include "_fake_typedefs.h"

typedef int uInt;
typedef int uLong;
#if !defined(__MACTYPES__)
typedef int Byte;
#endif

typedef int Bytef;
typedef int charf;
typedef int intf;
typedef int uIntf;
typedef int uLongf;

typedef int voidpc;
typedef int voidpf;
typedef int voidp;

#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
typedef int Z_U4;
#endif

typedef int z_crc_t;
typedef int z_size_t;

typedef int alloc_func;
typedef int free_func;

#endif