Parsee/src/include/Matrix.h

11 lines
315 B
C

#ifndef PARSEE_MATRIX_H
#define PARSEE_MATRIX_H
#include <Cytoplasm/Json.h>
/* Creates an error message JSON, with the specified code and message. */
extern HashMap * MatrixCreateError(char *err, char *msg);
/* Creates the content for a notice message. */
extern HashMap * MatrixCreateNotice(char *body);
#endif