19 lines
786 B
C
19 lines
786 B
C
|
#include "status_codes.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
const char *get_message_from_status_code(int status_code) {
|
||
|
if (status_code > 100 && status_code < 100 + NUM_100_STATUS_CODES) {
|
||
|
return STATUS_CODES_100[status_code - 100];
|
||
|
} else if (status_code > 200 && status_code < 200 + NUM_200_STATUS_CODES) {
|
||
|
return STATUS_CODES_200[status_code - 200];
|
||
|
} else if (status_code > 300 && status_code < 300 + NUM_300_STATUS_CODES) {
|
||
|
return STATUS_CODES_300[status_code - 300];
|
||
|
} else if (status_code > 400 && status_code < 400 + NUM_400_STATUS_CODES) {
|
||
|
return STATUS_CODES_400[status_code - 400];
|
||
|
} else if (status_code > 500 && status_code < 500 + NUM_500_STATUS_CODES) {
|
||
|
return STATUS_CODES_500[status_code - 500];
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|