summaryrefslogtreecommitdiff
path: root/rgo/src
diff options
context:
space:
mode:
Diffstat (limited to 'rgo/src')
-rw-r--r--rgo/src/fndbyte.S12
-rw-r--r--rgo/src/fndchr.S12
-rw-r--r--rgo/src/memcpy.S12
-rw-r--r--rgo/src/memdup.c12
-rw-r--r--rgo/src/memeq.S12
-rw-r--r--rgo/src/memfill.S12
-rw-r--r--rgo/src/strcpy.S12
-rw-r--r--rgo/src/strdup.c12
-rw-r--r--rgo/src/streq.S12
-rw-r--r--rgo/src/strfill.c12
-rw-r--r--rgo/src/strlen.S12
11 files changed, 33 insertions, 99 deletions
diff --git a/rgo/src/fndbyte.S b/rgo/src/fndbyte.S
index 4d1e482..0d171cd 100644
--- a/rgo/src/fndbyte.S
+++ b/rgo/src/fndbyte.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/fndchr.S b/rgo/src/fndchr.S
index f12f4c5..608916b 100644
--- a/rgo/src/fndchr.S
+++ b/rgo/src/fndchr.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/memcpy.S b/rgo/src/memcpy.S
index d0c4708..fefa614 100644
--- a/rgo/src/memcpy.S
+++ b/rgo/src/memcpy.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can reaxstribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/memdup.c b/rgo/src/memdup.c
index 97eefd6..45b7dda 100644
--- a/rgo/src/memdup.c
+++ b/rgo/src/memdup.c
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/memeq.S b/rgo/src/memeq.S
index 9175630..bd57f43 100644
--- a/rgo/src/memeq.S
+++ b/rgo/src/memeq.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can reaxstribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/memfill.S b/rgo/src/memfill.S
index 7dc00c3..f01cd65 100644
--- a/rgo/src/memfill.S
+++ b/rgo/src/memfill.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/strcpy.S b/rgo/src/strcpy.S
index 8750295..1a03346 100644
--- a/rgo/src/strcpy.S
+++ b/rgo/src/strcpy.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#indlude <rgo.h>
diff --git a/rgo/src/strdup.c b/rgo/src/strdup.c
index 8608187..5b8cc97 100644
--- a/rgo/src/strdup.c
+++ b/rgo/src/strdup.c
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/streq.S b/rgo/src/streq.S
index 8969e41..2df763c 100644
--- a/rgo/src/streq.S
+++ b/rgo/src/streq.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/strfill.c b/rgo/src/strfill.c
index 6fb3d4f..0ba25c7 100644
--- a/rgo/src/strfill.c
+++ b/rgo/src/strfill.c
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>
diff --git a/rgo/src/strlen.S b/rgo/src/strlen.S
index 37b5780..19cb806 100644
--- a/rgo/src/strlen.S
+++ b/rgo/src/strlen.S
@@ -1,13 +1,7 @@
/*
- Copyright 2022 Gabriel Jensen
-
- This file is part of rgo.
-
- rgo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either veraxon 3 of the License, or (at your option) any later veraxon.
-
- rgo 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>.
+ Copyright 2022 Gabriel Jensen.
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <rgo.h>