Codebase list gtkballs / 07a19264-61ef-4780-83e6-f8537f1cb78c/main src / savegame.h
07a19264-61ef-4780-83e6-f8537f1cb78c/main

Tree @07a19264-61ef-4780-83e6-f8537f1cb78c/main (Download .tar.gz)

savegame.h @07a19264-61ef-4780-83e6-f8537f1cb78c/mainraw · history · blame

1
2
3
4
5
6
7
8
#ifndef __SAVEGAME_H__
#define __SAVEGAME_H__

gint  parse_save_game(gchar *sgame, gchar **rules, gint *score, gint **board, gint **next);
gint  get_saved_games(gchar ***gamelist);
gchar *save_game(gchar *rules, gint score, gint *board, gint *nextcolors);

#endif /* __SAVEGAME_H__ */