#ifndef __TEAMS_H__ # define __TEAMS_H__ # include # include # include "common.h" # define __COBJ_DECL__ # include "cobj.h" // Type definition Class(team, { List(team, name, char, [255]); List(team, member_name, char, [3][255], int); List(team, institution, char, [255]); Atom(team, solved, uint8_t); Func(team, printf, int); Func(team, fprintf, int, FILE *); Func(team, find_champion, team, ptr(team), size_t); Del (team); }); # define __COBJ_PUB__ # include "cobj.h" #endif /* __TEAMS_H__ */ /* vim: ts=8 */