brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 4164aff Raw
14 lines · c
1#include <stdint.h>2#include <stdio.h>3 4struct Bytes {5  uint8_t ubyte;6  int8_t sbyte;7};8 9int main() {10  struct Bytes bytes = {0x30, 0x01};11  (void)bytes;12  printf("break here\n");13}14