blob: 4164aff7dbf6fa5f91671057db0a65a5b291ceb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdint.h>
#include <stdio.h>
struct Bytes {
uint8_t ubyte;
int8_t sbyte;
};
int main() {
struct Bytes bytes = {0x30, 0x01};
(void)bytes;
printf("break here\n");
}
|