switch source tree from k&r to c99
This commit is contained in:
+6
-7
@@ -45,20 +45,19 @@ struct tibhdr_struct {
|
||||
* char packtile[TILE_Y][TILE_X];
|
||||
*/
|
||||
|
||||
extern void FDECL(CloseTileFile, (BOOLEAN_P));
|
||||
extern int FDECL(OpenTileFile, (char *, BOOLEAN_P));
|
||||
extern int FDECL(ReadTileFileHeader, (struct tibhdr_struct *, BOOLEAN_P));
|
||||
extern void CloseTileFile(boolean);
|
||||
extern int OpenTileFile(char *, boolean);
|
||||
extern int ReadTileFileHeader(struct tibhdr_struct *, boolean);
|
||||
|
||||
#ifdef PLANAR_FILE
|
||||
#ifdef SCREEN_VGA
|
||||
extern int FDECL(ReadPlanarTileFile, (int, struct planar_cell_struct **));
|
||||
extern int FDECL(ReadPlanarTileFile_O,
|
||||
(int, struct overview_planar_cell_struct **));
|
||||
extern int ReadPlanarTileFile(int, struct planar_cell_struct **);
|
||||
extern int ReadPlanarTileFile_O(int, struct overview_planar_cell_struct **);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef PACKED_FILE
|
||||
extern int FDECL(ReadPackedTileFile, (int, char (*)[TILE_X]));
|
||||
extern int ReadPackedTileFile(int, char (*)[TILE_X]);
|
||||
#endif
|
||||
|
||||
extern short glyph2tile[MAX_GLYPH]; /* in tile.c (made from tilemap.c) */
|
||||
|
||||
Reference in New Issue
Block a user