2012-09-13 12:54:25 -05:00
|
|
|
#include "esl.h"
|
|
|
|
|
2017-02-27 18:53:15 -06:00
|
|
|
ESL_DECLARE(const char *)cJSON_GetObjectCstr(const cJSON *object, const char *string)
|
2010-06-17 11:49:16 -05:00
|
|
|
{
|
2017-02-27 18:53:15 -06:00
|
|
|
cJSON *cj = cJSON_GetObjectItem(object, string);
|
2010-06-17 11:49:16 -05:00
|
|
|
|
2017-02-27 18:53:15 -06:00
|
|
|
if (!cj || cj->type != cJSON_String || !cj->valuestring) return NULL;
|
2010-06-17 11:49:16 -05:00
|
|
|
|
2017-02-27 18:53:15 -06:00
|
|
|
return cj->valuestring;
|
2010-06-17 11:49:16 -05:00
|
|
|
}
|
|
|
|
|
2013-05-25 09:47:12 +00:00
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
|
|
|
* indent-tabs-mode:t
|
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
2013-06-25 11:50:17 -05:00
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
|
2013-05-25 09:47:12 +00:00
|
|
|
*/
|