mirror of
https://github.com/fumiama/C302.git
synced 2026-03-21 20:42:00 +09:00
优化类型名
This commit is contained in:
4
c302.h
4
c302.h
@@ -14,8 +14,8 @@
|
||||
#define H500 "HTTP/1.0 500 Internal Server Error\r\nContent-Type: text/html\r\n\r\n<P>%s\r\n"
|
||||
const char* types[] = {H400, H404, H500};
|
||||
const uint8_t typel[] = {59, 111, 69};
|
||||
enum ERRCODE {HTTP400, HTTP404, HTTP500};
|
||||
typedef enum ERRCODE ERRCODE;
|
||||
enum errcode_enum_t {HTTP400, HTTP404, HTTP500};
|
||||
typedef enum errcode_enum_t errcode_enum_t;
|
||||
|
||||
static const char* urls[] = {
|
||||
"https://bocchi.rocks/assets/img/page/character/hitori/main.png", // 後藤ひとり
|
||||
|
||||
Reference in New Issue
Block a user