aboutsummaryrefslogtreecommitdiff
path: root/win32/match_class.c
blob: 789e0df02d8d6ee662fcd8f9ff8be01882828c41 (plain)
1
2
3
4
5
6
7
#include "libbb.h"
#include "match_class.h"

int match_class(const char *name)
{
	return index_in_strings(CHAR_CLASSES, name);
}