diff options
Diffstat (limited to 'lldb/test/Shell/Heap/Inputs/cstr.c')
-rw-r--r-- | lldb/test/Shell/Heap/Inputs/cstr.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lldb/test/Shell/Heap/Inputs/cstr.c b/lldb/test/Shell/Heap/Inputs/cstr.c new file mode 100644 index 00000000000..2f9117b635e --- /dev/null +++ b/lldb/test/Shell/Heap/Inputs/cstr.c @@ -0,0 +1,17 @@ +#include <stdlib.h> + +int main(void) { + char *str; + int size = 9; //strlen("patatino") + 1 + str = (char *)malloc(sizeof(char)*size); + *(str+0) = 'p'; + *(str+1) = 'a'; + *(str+2) = 't'; + *(str+3) = 'a'; + *(str+4) = 't'; + *(str+5) = 'i'; + *(str+6) = 'n'; + *(str+7) = 'o'; + *(str+8) = '\0'; + return 0; +} |