From e61b5824dba900f4df6c4ae91c04f90de7504321 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sat, 15 Feb 2025 15:35:28 +0200 Subject: [PATCH] refactor(userspace/apps/test/libc_test): remove deprecated string test files Signed-off-by: EnderIce2 --- Userspace/apps/test/libc_test/string/memccpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/memchr.c | 18 ------------------ Userspace/apps/test/libc_test/string/memcmp.c | 18 ------------------ Userspace/apps/test/libc_test/string/memcpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/memmem.c | 18 ------------------ Userspace/apps/test/libc_test/string/memmove.c | 18 ------------------ Userspace/apps/test/libc_test/string/memset.c | 18 ------------------ Userspace/apps/test/libc_test/string/stpcpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/stpncpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/strcat.c | 18 ------------------ Userspace/apps/test/libc_test/string/strchr.c | 18 ------------------ Userspace/apps/test/libc_test/string/strcmp.c | 18 ------------------ Userspace/apps/test/libc_test/string/strcoll.c | 18 ------------------ .../apps/test/libc_test/string/strcoll_l.c | 18 ------------------ Userspace/apps/test/libc_test/string/strcpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/strcspn.c | 18 ------------------ Userspace/apps/test/libc_test/string/strdup.c | 18 ------------------ .../apps/test/libc_test/string/strerror.c | 18 ------------------ .../apps/test/libc_test/string/strerror_l.c | 18 ------------------ .../apps/test/libc_test/string/strerror_r.c | 18 ------------------ Userspace/apps/test/libc_test/string/strlcat.c | 18 ------------------ Userspace/apps/test/libc_test/string/strlcpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/strlen.c | 18 ------------------ Userspace/apps/test/libc_test/string/strncat.c | 18 ------------------ Userspace/apps/test/libc_test/string/strncmp.c | 18 ------------------ Userspace/apps/test/libc_test/string/strncpy.c | 18 ------------------ Userspace/apps/test/libc_test/string/strndup.c | 18 ------------------ Userspace/apps/test/libc_test/string/strnlen.c | 18 ------------------ Userspace/apps/test/libc_test/string/strpbrk.c | 18 ------------------ Userspace/apps/test/libc_test/string/strrchr.c | 18 ------------------ .../apps/test/libc_test/string/strsignal.c | 18 ------------------ Userspace/apps/test/libc_test/string/strspn.c | 18 ------------------ Userspace/apps/test/libc_test/string/strstr.c | 18 ------------------ Userspace/apps/test/libc_test/string/strtok.c | 18 ------------------ .../apps/test/libc_test/string/strtok_r.c | 18 ------------------ Userspace/apps/test/libc_test/string/strxfrm.c | 18 ------------------ .../apps/test/libc_test/string/strxfrm_l.c | 18 ------------------ 37 files changed, 666 deletions(-) delete mode 100644 Userspace/apps/test/libc_test/string/memccpy.c delete mode 100644 Userspace/apps/test/libc_test/string/memchr.c delete mode 100644 Userspace/apps/test/libc_test/string/memcmp.c delete mode 100644 Userspace/apps/test/libc_test/string/memcpy.c delete mode 100644 Userspace/apps/test/libc_test/string/memmem.c delete mode 100644 Userspace/apps/test/libc_test/string/memmove.c delete mode 100644 Userspace/apps/test/libc_test/string/memset.c delete mode 100644 Userspace/apps/test/libc_test/string/stpcpy.c delete mode 100644 Userspace/apps/test/libc_test/string/stpncpy.c delete mode 100644 Userspace/apps/test/libc_test/string/strcat.c delete mode 100644 Userspace/apps/test/libc_test/string/strchr.c delete mode 100644 Userspace/apps/test/libc_test/string/strcmp.c delete mode 100644 Userspace/apps/test/libc_test/string/strcoll.c delete mode 100644 Userspace/apps/test/libc_test/string/strcoll_l.c delete mode 100644 Userspace/apps/test/libc_test/string/strcpy.c delete mode 100644 Userspace/apps/test/libc_test/string/strcspn.c delete mode 100644 Userspace/apps/test/libc_test/string/strdup.c delete mode 100644 Userspace/apps/test/libc_test/string/strerror.c delete mode 100644 Userspace/apps/test/libc_test/string/strerror_l.c delete mode 100644 Userspace/apps/test/libc_test/string/strerror_r.c delete mode 100644 Userspace/apps/test/libc_test/string/strlcat.c delete mode 100644 Userspace/apps/test/libc_test/string/strlcpy.c delete mode 100644 Userspace/apps/test/libc_test/string/strlen.c delete mode 100644 Userspace/apps/test/libc_test/string/strncat.c delete mode 100644 Userspace/apps/test/libc_test/string/strncmp.c delete mode 100644 Userspace/apps/test/libc_test/string/strncpy.c delete mode 100644 Userspace/apps/test/libc_test/string/strndup.c delete mode 100644 Userspace/apps/test/libc_test/string/strnlen.c delete mode 100644 Userspace/apps/test/libc_test/string/strpbrk.c delete mode 100644 Userspace/apps/test/libc_test/string/strrchr.c delete mode 100644 Userspace/apps/test/libc_test/string/strsignal.c delete mode 100644 Userspace/apps/test/libc_test/string/strspn.c delete mode 100644 Userspace/apps/test/libc_test/string/strstr.c delete mode 100644 Userspace/apps/test/libc_test/string/strtok.c delete mode 100644 Userspace/apps/test/libc_test/string/strtok_r.c delete mode 100644 Userspace/apps/test/libc_test/string/strxfrm.c delete mode 100644 Userspace/apps/test/libc_test/string/strxfrm_l.c diff --git a/Userspace/apps/test/libc_test/string/memccpy.c b/Userspace/apps/test/libc_test/string/memccpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memccpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memchr.c b/Userspace/apps/test/libc_test/string/memchr.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memchr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memcmp.c b/Userspace/apps/test/libc_test/string/memcmp.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memcmp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memcpy.c b/Userspace/apps/test/libc_test/string/memcpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memcpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memmem.c b/Userspace/apps/test/libc_test/string/memmem.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memmem.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memmove.c b/Userspace/apps/test/libc_test/string/memmove.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memmove.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/memset.c b/Userspace/apps/test/libc_test/string/memset.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/memset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/stpcpy.c b/Userspace/apps/test/libc_test/string/stpcpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/stpcpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/stpncpy.c b/Userspace/apps/test/libc_test/string/stpncpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/stpncpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcat.c b/Userspace/apps/test/libc_test/string/strcat.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcat.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strchr.c b/Userspace/apps/test/libc_test/string/strchr.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strchr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcmp.c b/Userspace/apps/test/libc_test/string/strcmp.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcmp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcoll.c b/Userspace/apps/test/libc_test/string/strcoll.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcoll.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcoll_l.c b/Userspace/apps/test/libc_test/string/strcoll_l.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcoll_l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcpy.c b/Userspace/apps/test/libc_test/string/strcpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strcspn.c b/Userspace/apps/test/libc_test/string/strcspn.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strcspn.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strdup.c b/Userspace/apps/test/libc_test/string/strdup.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strdup.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strerror.c b/Userspace/apps/test/libc_test/string/strerror.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strerror.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strerror_l.c b/Userspace/apps/test/libc_test/string/strerror_l.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strerror_l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strerror_r.c b/Userspace/apps/test/libc_test/string/strerror_r.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strerror_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strlcat.c b/Userspace/apps/test/libc_test/string/strlcat.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strlcat.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strlcpy.c b/Userspace/apps/test/libc_test/string/strlcpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strlcpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strlen.c b/Userspace/apps/test/libc_test/string/strlen.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strlen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strncat.c b/Userspace/apps/test/libc_test/string/strncat.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strncat.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strncmp.c b/Userspace/apps/test/libc_test/string/strncmp.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strncmp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strncpy.c b/Userspace/apps/test/libc_test/string/strncpy.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strncpy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strndup.c b/Userspace/apps/test/libc_test/string/strndup.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strndup.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strnlen.c b/Userspace/apps/test/libc_test/string/strnlen.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strnlen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strpbrk.c b/Userspace/apps/test/libc_test/string/strpbrk.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strpbrk.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strrchr.c b/Userspace/apps/test/libc_test/string/strrchr.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strrchr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strsignal.c b/Userspace/apps/test/libc_test/string/strsignal.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strsignal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strspn.c b/Userspace/apps/test/libc_test/string/strspn.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strspn.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strstr.c b/Userspace/apps/test/libc_test/string/strstr.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strstr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strtok.c b/Userspace/apps/test/libc_test/string/strtok.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strtok.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strtok_r.c b/Userspace/apps/test/libc_test/string/strtok_r.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strtok_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strxfrm.c b/Userspace/apps/test/libc_test/string/strxfrm.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strxfrm.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include diff --git a/Userspace/apps/test/libc_test/string/strxfrm_l.c b/Userspace/apps/test/libc_test/string/strxfrm_l.c deleted file mode 100644 index 377a5f7c..00000000 --- a/Userspace/apps/test/libc_test/string/strxfrm_l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include