File: mytypes.h

package info (click to toggle)
socat 1.7.3.1-1~bpo8%2B1
  • links: PTS
  • area: main
  • in suites: jessie-backports
  • size: 4,016 kB
  • sloc: ansic: 27,860; sh: 11,347; makefile: 146
file content (25 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (2)
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
/* source: mytypes.h */
/* Copyright Gerhard Rieger */
/* Published under the GNU General Public License V.2, see file COPYING */

#ifndef __mytypes_h_included
#define __mytypes_h_included 1

/* some types and macros I miss in C89 */

#ifndef HAVE_TYPE_BOOL
#  undef bool
typedef enum { false, true } bool;
#endif

#ifndef Min
#define Min(x,y) ((x)<=(y)?(x):(y))
#endif

#ifndef Max
#define Max(x,y) ((x)>=(y)?(x):(y))
#endif

#define SOCKADDR_MAX UNIX_PATH_MAX

#endif /* __mytypes_h_included */