Add ".pwn" to the official list of extensions.

It is used by almost all scripts, so why shouldn't it be officially supported?
This commit is contained in:
Y-Less 2022-03-11 10:42:52 +00:00 committed by GitHub
parent de84898443
commit c724dc146e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ SC_FUNC void clearstk(void)
SC_FUNC int plungequalifiedfile(char *name)
{
static char extensions[][6] = { "", ".inc", ".p", ".pawn" };
static char extensions[][6] = { "", ".inc", ".p", ".pawn", ".pwn" };
int found;
struct stat st;
FILE *fp;