Use [ -n "$x" ] in place of [ ! -z "$x" ] in chutney-git-bisect
[tor.git] / src / lib / geoip / country.h
blob080c15602319f823101b158e9c7b006ac1d89d27
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2018, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 #ifndef TOR_COUNTRY_H
8 #define TOR_COUNTRY_H
10 #include "lib/cc/torint.h"
11 /** A signed integer representing a country code. */
12 typedef int16_t country_t;
14 #define COUNTRY_MAX INT16_MAX
16 #endif