26-rework #27

Merged
asdam9 merged 3 commits from 26-rework into master 2021-11-16 08:17:29 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 9c3bcc3b0b - Show all commits

View File

@ -13,7 +13,8 @@ static int AddPost(char title[], int authorId, char datePosted[], char post[], i
static int EditPost(int postID, char title[], char post[], MYSQL* con);
static int AddFilePost(int authorID, char filePath[], MYSQL* con);
static int BlogWrite(MYSQL* con);
static int PullPostData(char* strings[6], int postID, MYSQL* con); static int AddTag(char tagTitle[], MYSQL* con);
static int PullPostData(char* strings[6], int postID, MYSQL* con);
static int AddTag(char tagTitle[], MYSQL* con);
static int DeleteTag(int tagID, MYSQL* con);
static int EditTag(int tagID, char tagTitle[], MYSQL* con);
static int AssignTag(int tagID, int postID, MYSQL* con);