From 852fe43c21895c0eeb97d45bf2e5af0d842af1b7 Mon Sep 17 00:00:00 2001 From: nihonium Date: Tue, 8 Mar 2022 00:54:17 +0300 Subject: [PATCH] neo --- cpu/neo.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cpu/neo.c diff --git a/cpu/neo.c b/cpu/neo.c new file mode 100644 index 0000000..9b19ef7 --- /dev/null +++ b/cpu/neo.c @@ -0,0 +1,6 @@ +char* whatisyourname() { + char *res = calloc(256+1, sizeof(char)); + for (int i = 0; i < 256; ++i) + res[i] = '1'; + return res; +}