# HG changeset patch # User Jim Meyering # Date 882705394 0 # Node ID e1d8eb135151e3527b2e6e82c96b68f6cc5a8bea # Parent 19bcd09e0d04dc5467d5667c0838d1c6d6bdc019 add FIXME-describe comments diff --git a/lib/exclude.c b/lib/exclude.c --- a/lib/exclude.c +++ b/lib/exclude.c @@ -43,6 +43,8 @@ int exclude_count; }; +/* FIXME: describe */ + struct exclude * new_exclude (void) { @@ -53,6 +55,8 @@ return ex; } +/* FIXME: describe */ + int excluded_filename (struct exclude const *ex, char const *f) { @@ -67,6 +71,8 @@ return 0; } +/* FIXME: describe */ + void add_exclude (struct exclude *ex, char const *pattern) { @@ -78,6 +84,8 @@ ex->exclude[ex->exclude_count++] = pattern; } +/* FIXME: describe */ + int add_exclude_file (struct exclude *ex, char const *filename, char line_end) {