X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=src%2Fjansson_private.h;h=9224b31e1779e1c45f2ecf2a52adc28efea2b666;hb=c30e92603c0780040fa3a974d6234dedeb5cd266;hp=2d2af62cb1f24dd7d221826ec9f2ae2aa44c1c35;hpb=198d537be76ae4debaac7f730bb2c591b04ab1df;p=jansson.git diff --git a/src/jansson_private.h b/src/jansson_private.h index 2d2af62..9224b31 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. @@ -20,6 +20,16 @@ #define max(a, b) ((a) > (b) ? (a) : (b)) #endif +/* va_copy is a C99 feature. In C89 implementations, it's sometimes + available as __va_copy. If not, memcpy() should do the trick. */ +#ifndef va_copy +#ifdef __va_copy +#define va_copy __va_copy +#else +#define va_copy(a, b) memcpy(&(a), &(b), sizeof(va_list)) +#endif +#endif + typedef struct { json_t json; hashtable_t hashtable; @@ -56,6 +66,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]; @@ -63,11 +76,16 @@ typedef struct { const object_key_t *jsonp_object_iter_fullkey(void *iter); -#define JSON_ERROR_MSG_LENGTH 160 +void jsonp_error_init(json_error_t *error, const char *source); +void jsonp_error_set_source(json_error_t *error, const char *source); +void jsonp_error_set(json_error_t *error, int line, int column, + size_t position, const char *msg, ...); +void jsonp_error_vset(json_error_t *error, int line, int column, + size_t position, const char *msg, va_list ap); -struct json_error_t { - char msg[JSON_ERROR_MSG_LENGTH]; - int line; -}; +/* Wrappers for custom memory functions */ +void* jsonp_malloc(size_t size); +void jsonp_free(void *ptr); +char *jsonp_strdup(const char *str); #endif