1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-12-04 14:46:45 -05:00
trader/src
2018-08-09 18:42:10 +10:00
..
exch.c Keep the Intel C compiler quiet 2018-08-06 13:59:25 +10:00
exch.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
fileio.c Correct spelling or grammatical mistakes in various comments 2018-08-06 22:09:20 +10:00
fileio.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
game.c Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
game.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
globals.c Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
globals.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
help.c Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
help.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
intf.c Use __attribute__((unused)) to silence GCC with the -Wextra flag 2018-08-09 18:42:10 +10:00
intf.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
Makefile.am Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
move.c Keep the Intel C compiler quiet 2018-08-06 13:59:25 +10:00
move.h Correct spelling or grammatical mistakes in various comments 2018-08-06 22:09:20 +10:00
README Update the copyright date to 2018 2018-03-30 11:38:29 +11:00
system.h Move redefinition of _XOPEN_SOURCE into its own Autoconf macro and header 2018-08-09 18:05:39 +10:00
trader.c Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
trader.h Change all relevant http references to https (secure HTTP) 2018-03-30 12:46:37 +11:00
utils.c Avoid a Clang warning about a comparison that is always false 2018-08-08 13:50:15 +10:00
utils.h Replace spaces with tabs and vice versa 2018-08-08 14:55:58 +10:00

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

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

    trader.c    trader.h    - Main program, command-line interface
    globals.c   globals.h   - Global game constants and variables
    game.c      game.h      - Game start, end and (some) display functions
    move.c      move.h      - Functions for making and processing a move
    exch.c      exch.h      - Stock Exchange and Bank functions
    fileio.c    fileio.h    - Load and save game file functions
    help.c      help.h      - Help text functions: how to play the game
    intf.c      intf.h      - Basic text input/output functions
    utils.c     utils.h     - Utility functions needed by Star Traders
    system.h                - All system header files are included here