diff -r 1a2d7298bc82 -r fa9bda32de17 suffix_fnc.c --- a/suffix_fnc.c Tue Oct 02 10:49:25 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -/* - * suffix_fnc.c - * - * Created on: 15.09.2011 - * Author: Mike - */ - -#include "suffix_fnc.h" - -bool testSuffix(char* filename, string_list_t* list) { - bool ret = false; - int tokenlen, fnamelen = strlen(filename); - for (int t = 0 ; t < list->count ; t++) { - tokenlen = strlen(list->items[t]); - if (fnamelen >= tokenlen && tokenlen > 0) { - if (strncmp(filename+fnamelen-tokenlen, - list->items[t], tokenlen) == 0) { - ret = true; - break; - } - } - } - return ret; -} -