diff options
Diffstat (limited to 'lit/Heap/Inputs/cstr.c')
-rw-r--r-- | lit/Heap/Inputs/cstr.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lit/Heap/Inputs/cstr.c b/lit/Heap/Inputs/cstr.c deleted file mode 100644 index 2f9117b635e5..000000000000 --- a/lit/Heap/Inputs/cstr.c +++ /dev/null @@ -1,17 +0,0 @@ -#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; -} |