summaryrefslogtreecommitdiffhomepage
path: root/src/alias.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/alias.h')
-rw-r--r--src/alias.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/alias.h b/src/alias.h
index bc125eb..c13f342 100644
--- a/src/alias.h
+++ b/src/alias.h
@@ -19,13 +19,16 @@
struct alias {
struct alias *next;
- char name[32]; // TIL this has a hard limit :^)
+ char name[32];
char *value;
};
extern struct alias **_alias_head;
#define alias_head (*_alias_head) // act as a global
+/* Clears all aliases from the engine's internal list. */
void alias_nuke(void);
+
+/* Removes a specific named alias from the engine's internal list. */
void alias_rm(const char *name);
#endif