1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-12-04 14:46:45 -05:00
trader/src
2011-07-02 21:19:51 +10:00
..
globals.c Use the C99 <stdbool.h> header file 2011-06-30 21:11:36 +10:00
globals.h Add intf.h and intf.c: basic text input/output interface routines 2011-07-02 14:53:45 +10:00
intf.c Add intf.h and intf.c: basic text input/output interface routines 2011-07-02 14:53:45 +10:00
intf.h Add intf.h and intf.c: basic text input/output interface routines 2011-07-02 14:53:45 +10:00
Makefile.am Add README files to the src and doc subdirectories 2011-07-02 10:17:03 +10:00
README Add intf.h and intf.c: basic text input/output interface routines 2011-07-02 14:53:45 +10:00
system.h Add the err_exit() and errno_exit() functions 2011-07-02 14:23:35 +10:00
trader.c Use PACKAGE_NAME where appropriate 2011-07-02 21:19:51 +10:00
trader.h Use PACKAGE_NAME where appropriate 2011-07-02 21:19:51 +10:00
utils.c Add the err_exit() and errno_exit() functions 2011-07-02 14:23:35 +10:00
utils.h Add the err_exit() and errno_exit() functions 2011-07-02 14:23:35 +10:00

**************************************************************************
*                                                                        *
*              Star Traders: A Game of Interstellar Trading              *
*                 Copyright (C) 1990-2011, John Zaitseff                 *
*                                                                        *
**************************************************************************

This directory, "src", contains the main source code to Star Traders.  The
source code is split up among the following files:

    trader.h     - Main program header file
    trader.c     - Main program, command-line interface
    system.h     - All system header files are included here
    globals.h    - Global game constants and variables
    globals.c    - Global game variables
    intf.h       - Basic text input/output header file
    intf.c       - Basic text input/output routines
    utils.h      - Utility functions header file
    utils.c      - Utility functions needed by Star Traders