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

9 lines
188 B
C

#include "first.h"
bool inspect_first(const uint8_t *bytes, size_t len) {
if (both_require(bytes, len)) {
if (len >= 4 && bytes[3] == 'd') { return ACCEPT; }
}
return REJECT;
}