diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 |
commit | 88c643b6fec27eec436c8d138fee6346e92337d6 (patch) | |
tree | 82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /lit/Heap/Inputs/cstr.c | |
parent | 94994d372d014ce4c8758b9605d63fae651bd8aa (diff) |
Notes
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; -} |