mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 13:45:10 +00:00
11 lines
315 B
C
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
|