copy over docs from the wrong repo; take out error/warning wrappers

This commit is contained in:
Allen Webster
2021-03-14 17:54:04 -07:00
parent a0ef78a49a
commit b72a53e84c
4 changed files with 1097 additions and 26 deletions
+1 -3
View File
@@ -375,7 +375,7 @@ struct MD_CodeLoc
int column;
};
//~ Warning Levels
//~ Message Levels
typedef enum MD_MessageKind
{
@@ -749,8 +749,6 @@ MD_FUNCTION void MD_NodeError(MD_Node *node, MD_String8 str);
MD_FUNCTION void MD_NodeWarning(MD_Node *node, MD_String8 str);
MD_FUNCTION void MD_NodeMessageF(MD_Node *node, MD_MessageKind kind, char *fmt, ...);
MD_FUNCTION void MD_NodeErrorF(MD_Node *node, char *fmt, ...);
MD_FUNCTION void MD_NodeWarningF(MD_Node *node, char *fmt, ...);
MD_FUNCTION void MD_OutputError(FILE *f, MD_Error *error);
//~ Tree Comparison/Verification
MD_FUNCTION MD_b32 MD_NodeMatch(MD_Node *a, MD_Node *b, MD_StringMatchFlags str_flags, MD_NodeMatchFlags node_flags);