// Copyright (c) 1999-2000 David Muse
// See the COPYING file for more information.

#ifndef REGEXP_H
#define REGEXP_H

class regularexpression {
	public:
			regularexpression();
		virtual	~regularexpression();

		int	match(char *str, char *pattern);
				// returns 1 if str matches pattern
				// and 0 if str doesn't match pattern
};

#endif