# HG changeset patch # User viric@mandarina # Date 1146914646 -7200 # Node ID 622136ed6c629d9a3f6314a0aa7c3d577f04c69c # Parent b41a580b3abe1139859af4bb9c7caf820c1a8523 Added description to general.h, from where the prototypes come from. diff -r b41a580b3abe -r 622136ed6c62 general.h --- a/general.h Sat May 06 10:08:41 2006 +0200 +++ b/general.h Sat May 06 13:24:06 2006 +0200 @@ -69,16 +69,18 @@ }; -/* Prototypes for map managing */ - +/* Prototypes for map managing + * map.c */ void CopyMap (struct Map *Mdest, const struct Map *Morig); int is_new_map(struct Map maps[], int depth); -/* Prototypes for unix i/o, processes */ +/* Prototypes for unix i/o, processes + * os.c */ void ReadMap(struct Map *M, char *FileName); void ShowMap (const struct Map *M); void init_os(); void PrintMove(struct BoxMove b); -/* Functions related to map solution */ +/* Functions related to map solution + * algorithm.c */ int solve_map(const struct Map origin);