moth/src/common.h

12 lines
287 B
C
Raw Normal View History

2010-09-03 21:00:02 -06:00
#ifndef __COMMON_H__
#define __COMMON_H__
2010-09-09 15:14:39 -06:00
#define teamdir "/var/lib/ctf/teams/names"
#define pointsdir "/var/lib/ctf/points/new"
2010-09-03 21:00:02 -06:00
int team_exists(char *teamhash);
int award_points(char *teamhash, char *category, int point);
int fgrepx(char const *needle, char const *filename);
2010-09-03 21:00:02 -06:00
#endif