Skip to content

Commit

Permalink
updates include guards, copyright and pawn.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Vince0789 committed May 25, 2021
1 parent d9a80ff commit c92b55a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion array_util.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Vince0789
* Copyright (c) 2018-2021 Vince0789
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -22,6 +22,15 @@
* SOFTWARE.
*/

#if defined _inc_array_util
#undef _inc_array_util
#endif

#if defined _INC_array_util
#endinput
#endif
#define _INC_array_util

// -----------------------------------------------------------------------------

/**
Expand Down
4 changes: 2 additions & 2 deletions pawn.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"repo": "pawn-array-util",
"entry": "test.pwn",
"output": "test.amx",
"dependencies": [
"dev_dependencies": [
"sampctl/samp-stdlib"
]
}
}

0 comments on commit c92b55a

Please sign in to comment.