summaryrefslogtreecommitdiff
path: root/utils/extconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/extconf.c')
-rw-r--r--utils/extconf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index 48053aed6..3a0b2e97c 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -4381,6 +4381,19 @@ static struct ast_include *ast_walk_context_includes(struct ast_context *con,
return inc->next;
}
+int ast_context_includes_count(struct ast_context *con);
+int ast_context_includes_count(struct ast_context *con)
+{
+ int c = 0;
+ struct ast_include *inc = NULL;
+
+ while ((inc = ast_walk_context_includes(con, inc))) {
+ c++;
+ }
+
+ return c;
+}
+
struct ast_include *localized_walk_context_includes(struct ast_context *con,
struct ast_include *inc);
struct ast_include *localized_walk_context_includes(struct ast_context *con,