summaryrefslogtreecommitdiffstats
path: root/libaf/af.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af.c')
-rw-r--r--libaf/af.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libaf/af.c b/libaf/af.c
index 10ee1660bb..5728095ab3 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -610,3 +610,11 @@ int af_control_any_rev (af_stream_t* s, int cmd, void* arg) {
return (res == AF_OK);
}
+void af_help (void) {
+ int i = 0;
+ while (filter_list[i]) {
+ af_msg(AF_MSG_INFO, " %-15s: %s\n", filter_list[i]->name, filter_list[i]->info);
+ i++;
+ }
+}
+