1#include <stdio.h>
2#include <stdint.h>
3
4int main (int argc, char const *argv[])
5{
6 const char* stringdata = "hello world; I like to write text in const char pointers";
7 uint8_t bytedata[] = {0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99};
8 return 0; // break here
9}
10

source code of lldb/test/API/functionalities/memory/find/main.cpp