Sign in
llvm
/
llvm-project
/
lldb
/
refs/heads/master
/
.
/
test
/
API
/
functionalities
/
data-formatter
/
custom-printf-summary
/
main.c
blob: 4164aff7dbf6fa5f91671057db0a65a5b291ceb9 [
file
] [
log
] [
blame
] [
edit
]
#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"
);
}