1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-03-10 13:44:37 +00:00

Fixed core_pe's c modules licence notices.

This commit is contained in:
Virgil Dupras 2010-01-31 11:23:23 +01:00
parent a7c6f47dbe
commit f1d447d1aa
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,10 @@
/* Created By: Virgil Dupras /* Created By: Virgil Dupras
* Created On: 2010-01-30 * Created On: 2010-01-30
* Copyright 2010 Hardcoded Software (http://www.hardcoded.net) * Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
*
* This software is licensed under the "HS" License as described in the "LICENSE" file,
* which should be included with this package. The terms are also available at
* http://www.hardcoded.net/licenses/hs_license
*/ */
#define PY_SSIZE_T_CLEAN #define PY_SSIZE_T_CLEAN

View File

@ -1,12 +1,13 @@
/* Created By: Virgil Dupras /* Created By: Virgil Dupras
* Created On: 2010-01-30 * Created On: 2010-01-30
* Copyright 2010 Hardcoded Software (http://www.hardcoded.net) * Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
*
* This software is licensed under the "HS" License as described in the "LICENSE" file,
* which should be included with this package. The terms are also available at
* http://www.hardcoded.net/licenses/hs_license
*/ */
#define PY_SSIZE_T_CLEAN #define PY_SSIZE_T_CLEAN
#include "Python.h" #include "Python.h"
#include "structmember.h"
#include "stdio.h"
#include "stdlib.h"
/* I know that there strtol out there, but it requires a pointer to /* I know that there strtol out there, but it requires a pointer to
* a char, which would in turn require me to buffer my chars around, * a char, which would in turn require me to buffer my chars around,