summaryrefslogtreecommitdiff
path: root/src/core/ignore.h
diff options
context:
space:
mode:
authorailin-nemui <ailin-nemui@users.noreply.github.com>2017-11-30 11:15:47 +0100
committerailin-nemui <ailin-nemui@users.noreply.github.com>2017-11-30 11:15:47 +0100
commitb332d448f7e3c7e4b40ea4a08932d0bd46007bbf (patch)
tree81073b51a77215402cc6fb1df0d4afe91eda4c1a /src/core/ignore.h
parentb2ca8c04778866bd07cf1b612adf0df55f45b78e (diff)
downloadirssi-b332d448f7e3c7e4b40ea4a08932d0bd46007bbf.zip
fix comments
Diffstat (limited to 'src/core/ignore.h')
-rw-r--r--src/core/ignore.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ignore.h b/src/core/ignore.h
index e18be3c4..31171b58 100644
--- a/src/core/ignore.h
+++ b/src/core/ignore.h
@@ -27,14 +27,14 @@ int ignore_check(SERVER_REC *server, const char *nick, const char *host,
const char *channel, const char *text, int level);
enum {
- IGNORE_FIND_PATTERN = 0x01, // Match the pattern
- IGNORE_FIND_NOACT = 0x02, // Exclude the targets with NOACT level
+ IGNORE_FIND_PATTERN = 0x01, /* Match the pattern */
+ IGNORE_FIND_NOACT = 0x02, /* Exclude the targets with NOACT level */
};
IGNORE_REC *ignore_find_full (const char *servertag, const char *mask, const char *pattern,
char **channels, const int flags);
-// Convenience wrappers around ignore_find_full, for compatibility purpose
+/* Convenience wrappers around ignore_find_full, for compatibility purpose */
IGNORE_REC *ignore_find(const char *servertag, const char *mask, char **channels);
IGNORE_REC *ignore_find_noact(const char *servertag, const char *mask, char **channels, int noact);