summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-12-15 20:12:36 +0100
committerHaru <haru@dotalux.com>2015-12-15 20:21:28 +0100
commit83ec8701872e38ca2d801ab3812972cc19e8167e (patch)
tree94d4ae9af7477dfb29572f87e0ccb5d9a65b0254 /src/map/npc.c
parent417a9ab25eb346be8ae383bf521b213e19fe0ac2 (diff)
downloadhercules-83ec8701872e38ca2d801ab3812972cc19e8167e.tar.gz
hercules-83ec8701872e38ca2d801ab3812972cc19e8167e.tar.bz2
hercules-83ec8701872e38ca2d801ab3812972cc19e8167e.tar.xz
hercules-83ec8701872e38ca2d801ab3812972cc19e8167e.zip
Added const qualifier to the w1~w4 arguments of npc_parse_mob
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 8bc874615..5a7c46f95 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -3645,7 +3645,25 @@ void npc_parse_mob2(struct spawn_data* mobspawn)
}
}
-const char* npc_parse_mob(char* w1, char* w2, char* w3, char* w4, const char* start, const char* buffer, const char* filepath, int *retval) {
+/**
+ * Parses a mob permanent spawn.
+ *
+ * @param[in] w1 First tab-delimited part of the string to parse.
+ * @param[in] w2 Second tab-delimited part of the string to parse.
+ * @param[in] w3 Third tab-delimited part of the string to parse.
+ * @param[in] w4 Fourth tab-delimited part of the string to parse.
+ * @param[in] start Pointer to the beginning of the string inside buffer.
+ * This must point to the same buffer as `buffer`.
+ * @param[in] buffer Pointer to the buffer containing the script. For
+ * single-line mapflags not inside a script, this may be
+ * an empty (but initialized) single-character buffer.
+ * @param[in] filepath Source file path.
+ * @param[out] retval Pointer to return the success (EXIT_SUCCESS) or failure
+ * (EXIT_FAILURE) status. May be NULL.
+ * @return A pointer to the advanced buffer position.
+ */
+const char *npc_parse_mob(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval)
+{
int num, class_, m,x,y,xs,ys, i,j;
int mob_lv = -1, ai = -1, size = -1;
char mapname[32], mobname[NAME_LENGTH];