aboutsummaryrefslogtreecommitdiff
path: root/src/preproc.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-05-18 14:49:43 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-05-18 14:49:43 +0300
commit9388982950195420a96db58f04a5e6d0f292559e (patch)
treeea221e93570a6b5cf0c8c4ef7580b6069a552dec /src/preproc.c
parentc8865a0d524f3d545836bd4581329089a357661e (diff)
downloadgrecs-9388982950195420a96db58f04a5e6d0f292559e.tar.gz
grecs-9388982950195420a96db58f04a5e6d0f292559e.tar.bz2
Minor change.
* src/grecs.h (grecs_include_path_clear): New proto. * src/preproc.c (grecs_include_path_clear): New function.
Diffstat (limited to 'src/preproc.c')
-rw-r--r--src/preproc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/preproc.c b/src/preproc.c
index 4ab3066..1eeddd0 100644
--- a/src/preproc.c
+++ b/src/preproc.c
@@ -269,12 +269,21 @@ static void
incl_free(void *data)
{
grecs_free(data);
}
void
+grecs_include_path_clear()
+{
+ if (include_path)
+ grecs_list_clear(include_path);
+ if (std_include_path)
+ grecs_list_clear(std_include_path);
+}
+
+void
grecs_include_path_setup_v(char **dirs)
{
if (!include_path) {
include_path = grecs_list_create();
include_path->free_entry = incl_free;
}

Return to:

Send suggestions and report system problems to the System administrator.