9 lines
218 B
C
9 lines
218 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
|
|
void err_msg(char *msg);
|
|
char *add_to_front(char **str1, char *str2);
|
|
char *get_status_message(int status_code);
|
|
char *to_lower(char *str); |