summaryrefslogtreecommitdiff
path: root/tests/test_issue57_strcpy.c
diff options
context:
space:
mode:
authorjvoisin2024-04-24 18:36:10 +0200
committerjvoisin2024-04-24 18:40:13 +0200
commit3375426d8c18f43f58ab83c261735b04562828ae (patch)
treeca3b3179238bdeadf26f988e26666f7ebca29cfc /tests/test_issue57_strcpy.c
parenta817e1555a755224cacc1cbdeeaefb6a1de606f0 (diff)
Add a test
Diffstat (limited to 'tests/test_issue57_strcpy.c')
-rw-r--r--tests/test_issue57_strcpy.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_issue57_strcpy.c b/tests/test_issue57_strcpy.c
new file mode 100644
index 0000000..24f8ab1
--- /dev/null
+++ b/tests/test_issue57_strcpy.c
@@ -0,0 +1,11 @@
1#include "common.h"
2
3#include <string.h>
4
5int main(int argc, char** argv) {
6 char buffer[32] ={'a', 'b', 'c', 0};
7 strcpy(buffer , buffer + 16);
8 puts(buffer);
9
10 return ret;
11}