xref: /llvm-project/lldb/test/API/functionalities/data-formatter/custom-printf-summary/main.c (revision 8530b1c464ae9af4a5c8be145a8db043798634f6)
1*8530b1c4SDave Lee #include <stdint.h>
2*8530b1c4SDave Lee #include <stdio.h>
3*8530b1c4SDave Lee 
4*8530b1c4SDave Lee struct Bytes {
5*8530b1c4SDave Lee   uint8_t ubyte;
6*8530b1c4SDave Lee   int8_t sbyte;
7*8530b1c4SDave Lee };
8*8530b1c4SDave Lee 
main()9*8530b1c4SDave Lee int main() {
10*8530b1c4SDave Lee   struct Bytes bytes = {0x30, 0x01};
11*8530b1c4SDave Lee   (void)bytes;
12*8530b1c4SDave Lee   printf("break here\n");
13*8530b1c4SDave Lee }
14