All Downloads are FREE. Search and download functionalities are using the official Maven repository.

C-libcurl.object-header.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/*
 * object.h
 */

#ifndef _object_H_
#define _object_H_

#include 
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"


typedef struct object_t {
    void *temporary;
} object_t;

object_t *object_create();

void object_free(object_t *object);

object_t *object_parseFromJSON(cJSON *json);

cJSON *object_convertToJSON(object_t *object);

#endif /* _object_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy