-rw-r--r-- 111 saferewrite-20240515/src/uint8_smaller_mask/ref/smaller.c raw
#include <inttypes.h> uint8_t uint8_smaller_mask(uint8_t x,uint8_t y) { if (x < y) return -1; return 0; }