From 1c4318331663b152b0b298bd2c9e5c971506a86b Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 10 Jun 2023 16:44:19 +0100 Subject: Prune some comments and tidy up other minor things --- src/alias.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/alias.h') 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 -- cgit v1.2.3-54-g00ecf