mirror of https://github.com/dirtbags/moth.git
11 lines
227 B
C
11 lines
227 B
C
|
#ifndef __COMMON_H__
|
||
|
#define __COMMON_H__
|
||
|
|
||
|
#define teamdir "/var/lib/ctf/teams"
|
||
|
#define pointslog "/var/lib/ctf/points.log"
|
||
|
|
||
|
int team_exists(char *teamhash);
|
||
|
int award_points(char *teamhash, char *category, int point);
|
||
|
|
||
|
#endif
|