Changeset 106
- Timestamp:
- 05/12/07 20:19:51 (5 years ago)
- Files:
-
- COPYING (added)
- assert.h (modified) (1 diff)
- board.c (modified) (1 diff)
- board.h (modified) (1 diff)
- board_sdl.c (modified) (1 diff)
- board_text.c (modified) (1 diff)
- font_text.c (modified) (1 diff)
- font_text.h (modified) (1 diff)
- gemmes.c (modified) (1 diff)
- gemmes.h (modified) (1 diff)
- gemmes_sdl.c (modified) (1 diff)
- gemmes_text.c (modified) (1 diff)
- main.c (modified) (1 diff)
- randseq.c (modified) (1 diff)
- randseq.h (modified) (1 diff)
- randseq_test.c (modified) (1 diff)
- sdl_draw.c (modified) (1 diff)
- sdl_draw.h (modified) (1 diff)
- test_board_searchline.c (modified) (1 diff)
- win_port.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
assert.h
r67 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #ifndef ASSERT_H 2 18 #define ASSERT_H board.c
r95 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <string.h> 2 18 #include <stdlib.h> board.h
r72 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #ifndef BOARD_H 2 18 #define BOARD_H board_sdl.c
r93 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include "board.h" 2 18 #include "assert.h" board_text.c
r73 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include "board.h" 2 18 #include "assert.h" font_text.c
r47 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 #include "assert.h" font_text.h
r47 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 #ifndef FONT_TEXT_H gemmes.c
r104 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <stdio.h> 2 18 #include <string.h> gemmes.h
r94 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 #ifndef GEMMES_H gemmes_sdl.c
r98 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <unistd.h> 2 18 gemmes_text.c
r94 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 main.c
r71 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <stdlib.h> 2 18 #include <unistd.h> randseq.c
r104 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <string.h> 2 18 #include <stdlib.h> randseq.h
r95 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #ifndef RANDSEQ_H 2 18 #define RANDSEQ_H randseq_test.c
r9 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 #include <stdio.h> sdl_draw.c
r82 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 2 18 #include "sdl_draw.h" sdl_draw.h
r84 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #ifndef SDL_DRAW_H 2 18 #define SDL_DRAW_H test_board_searchline.c
r15 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include "gemmes.h" 2 18 win_port.c
r70 r106 1 /*************************************************************************** 2 * This file is part of the 'gemmes' project * 3 * * 4 * * 5 * Copyright (C) 2007 by * 6 * GARCH Soufiane * 7 * GUILLAUME Nicolas <ng@ngsoft-fr.com> * 8 * * 9 * * 10 * This program is free software; you can redistribute it and/or modify * 11 * it under the terms of the GNU General Public License as published by * 12 * the Free Software Foundation; version 2 of the License only. * 13 * See the COPYING file. * 14 ***************************************************************************/ 15 16 1 17 #include <windows.h> 2 18 #include <winbase.h>
