summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp
blob: 5f4545daabd5cbc55096e7b35e024b22300f925a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include <stdio.h>
#include <stdint.h>

int main (int argc, char const *argv[])
{
    const char* stringdata = "hello world; I like to write text in const char pointers";
    uint8_t bytedata[] = {0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99};
    return 0; // break here
}
OpenPOWER on IntegriCloud