xref: /llvm-project/lldb/test/API/commands/memory/read/main.c (revision 5ce0f876326168425eea37268721e7602094b6fc)
1*5ce0f876SPavel Labath #include <stdint.h>
2*5ce0f876SPavel Labath 
main(int argc,const char * argv[])3*5ce0f876SPavel Labath int main(int argc, const char *argv[]) {
4*5ce0f876SPavel Labath   char my_string[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 0};
5*5ce0f876SPavel Labath   double my_double = 1234.5678;
6*5ce0f876SPavel Labath   int my_ints[] = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22};
7*5ce0f876SPavel Labath   uint64_t my_uint64s[] = {0, 1, 2, 3, 4, 5, 6, 7};
8*5ce0f876SPavel Labath   return 0; // break here
93a870bffSDavid Spickett }
10