Skip to content

Commit

Permalink
sh-i18n--envsubst: retire unused string_list_member()
Browse files Browse the repository at this point in the history
This static function has no callers, nor has it had any since its
introduction in ba67aaf (git-sh-i18n--envsubst: our own envsubst(1)
for eval_gettext(), 2011-05-14). Remove it.

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
sunshineco authored and gitster committed Mar 12, 2014
1 parent 2f93541 commit 4825b80
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions sh-i18n--envsubst.c
Expand Up @@ -237,18 +237,6 @@ string_list_sort (string_list_ty *slp)
qsort (slp->item, slp->nitems, sizeof (slp->item[0]), cmp_string);
}

/* Test whether a string list contains a given string. */
static inline int
string_list_member (const string_list_ty *slp, const char *s)
{
size_t j;

for (j = 0; j < slp->nitems; ++j)
if (strcmp (slp->item[j], s) == 0)
return 1;
return 0;
}

/* Test whether a sorted string list contains a given string. */
static int
sorted_string_list_member (const string_list_ty *slp, const char *s)
Expand Down

0 comments on commit 4825b80

Please sign in to comment.