-rw-r--r-- 115 saferewrite-20240622/src/uint16_smaller_mask/ref/smaller.c raw
#include <inttypes.h> uint16_t uint16_smaller_mask(uint16_t x,uint16_t y) { if (x < y) return -1; return 0; }