Every commit submitted through a pull request must be under the same license as libmem (GNU AGPLv3.0). When creating new source code files, you must include the license header at the top of the file.
For new source code files, include this license header commented using the appropriate syntax for your programming language:
----------------------------------| libmem - by rdbo || Memory Hacking Library | ----------------------------------Copyright (C) <year> <author>This program is free software: you can redistribute it and/or modifyit under the terms of the GNU Affero General Public License version 3as published by the Free Software Foundation.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU Affero General Public License for more details.You should have received a copy of the GNU Affero General Public Licensealong with this program. If not, see <https://www.gnu.org/licenses/>.
/* * ---------------------------------- * | libmem - by rdbo | * | Memory Hacking Library | * ---------------------------------- *//* * Copyright (C) <year> <author> * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3 * as published by the Free Software Foundation. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */
Follow libmem’s existing coding style, paying special attention to code alignment and formatting conventions used throughout the project.
What license applies to my contributions?
All contributions must be submitted under the GNU AGPLv3.0 license, the same license used by libmem.
Do I need to add a license header to every file?
Yes, when creating new source code files, you must include the license header at the top of the file, commented appropriately for the programming language you’re using.