X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=src%2Fjansson_private.h;h=8bb8057c23f97616f255c38756b95cd7f94e5e51;hb=908c62f3278b682d879e8ffbdb71bcec60846977;hp=e9e0097f22424c2a639f4f6897612af116396cff;hpb=56643d4311ecb26001527520da6264d92eab3d76;p=jansson.git diff --git a/src/jansson_private.h b/src/jansson_private.h index e9e0097..8bb8057 100644 --- a/src/jansson_private.h +++ b/src/jansson_private.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Petri Lehtinen + * Copyright (c) 2009-2011 Petri Lehtinen * * Jansson is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -9,12 +9,18 @@ #define JANSSON_PRIVATE_H #include +#include #include "jansson.h" #include "hashtable.h" #define container_of(ptr_, type_, member_) \ ((type_ *)((char *)ptr_ - offsetof(type_, member_))) +/* On some platforms, max() may already be defined */ +#ifndef max +#define max(a, b) ((a) > (b) ? (a) : (b)) +#endif + typedef struct { json_t json; hashtable_t hashtable; @@ -51,6 +57,9 @@ typedef struct { #define json_to_real(json_) container_of(json_, json_real_t, json) #define json_to_integer(json_) container_of(json_, json_integer_t, json) +size_t jsonp_hash_key(const void *ptr); +int jsonp_key_equal(const void *ptr1, const void *ptr2); + typedef struct { size_t serial; char key[1]; @@ -58,4 +67,10 @@ typedef struct { const object_key_t *jsonp_object_iter_fullkey(void *iter); +void jsonp_error_init(json_error_t *error, const char *source); +void jsonp_error_set(json_error_t *error, int line, int column, + const char *msg, ...); +void jsonp_error_vset(json_error_t *error, int line, int column, + const char *msg, va_list ap); + #endif