diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-09-07 20:11:48 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-09-07 20:11:48 +0400 |
commit | 9af09b7467a4b9b7b2c9fbf1390b481e71bb07c6 (patch) | |
tree | 79c72ede24341ad6f47b63df0521ba3ff6591d65 /src/json/util.h | |
parent | d1b63d4cff12936a5ea4380bccadcc77b7c3ed3f (diff) | |
download | rspamd-9af09b7467a4b9b7b2c9fbf1390b481e71bb07c6.tar.gz rspamd-9af09b7467a4b9b7b2c9fbf1390b481e71bb07c6.zip |
* Add JSON settings parser
Diffstat (limited to 'src/json/util.h')
-rw-r--r-- | src/json/util.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/json/util.h b/src/json/util.h new file mode 100644 index 000000000..66066c52c --- /dev/null +++ b/src/json/util.h @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2009 Petri Lehtinen <petri@digip.org> + * + * Jansson is free software; you can redistribute it and/or modify + * it under the terms of the MIT license. See LICENSE for details. + */ + +#ifndef UTIL_H +#define UTIL_H + +#define max(a, b) ((a) > (b) ? (a) : (b)) + +#endif |