Dongjia "toka" Zhang fc16b70a65
Format C (#1602)
2023-10-03 13:40:19 +02:00

8 lines
189 B
C

#include "second.h"
bool inspect_second(const uint8_t *bytes, size_t len) {
if (both_require(bytes, len)) {
if (len >= 5 && bytes[4] == 'e') { return ACCEPT; }
}
return REJECT;
}