1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-12-04 14:46:45 -05:00
trader/src
John Zaitseff 4ca99815b8 Be a little more diligent when it comes to wchar_t vs. wint_t
The %lc format is actually of type wint_t, according to printf(3), not
wchar_t, even though these are of the same underlying type on most (all?)
platforms.
2011-08-29 14:13:29 +10:00
..
exch.c Minor clean-up: replace character constants with wide-char versions 2011-08-25 21:34:41 +10:00
exch.h Finish moving all comments from source files to headers 2011-07-22 13:05:06 +10:00
fileio.c Use wide-character functions for input routines and most strings 2011-08-25 13:19:31 +10:00
fileio.h Document and clean up fileio.c: functions load_game() and save_game() 2011-07-21 22:18:14 +10:00
game.c Be a little more diligent when it comes to wchar_t vs. wint_t 2011-08-29 14:13:29 +10:00
game.h Refactor some code in init_game() 2011-07-22 10:49:26 +10:00
globals.c Move some global variables to intf.c and intf.h 2011-08-25 14:48:31 +10:00
globals.h Move some global variables to intf.c and intf.h 2011-08-25 14:48:31 +10:00
help.c Minor clean-up: replace character constants with wide-char versions 2011-08-25 21:34:41 +10:00
help.h Allow localisation of company letters and map moves (choices) 2011-08-18 12:10:33 +10:00
intf.c Be a little more diligent when it comes to wchar_t vs. wint_t 2011-08-29 14:13:29 +10:00
intf.h Be a little more diligent when it comes to wchar_t vs. wint_t 2011-08-29 14:13:29 +10:00
Makefile.am Convert strings to UTF-8 if possible during file save and load 2011-08-08 11:15:44 +10:00
move.c Be a little more diligent when it comes to wchar_t vs. wint_t 2011-08-29 14:13:29 +10:00
move.h Add more comments to process_move() 2011-07-22 12:43:21 +10:00
README Final minor edits of various documentation files 2011-07-25 17:00:59 +10:00
system.h Cosmetic change: replace one space with one tab 2011-08-29 10:40:31 +10:00
trader.c Minor clean-up: replace character constants with wide-char versions 2011-08-25 21:34:41 +10:00
trader.h Try loading UTF-8 strings with transliteration, if at all possible 2011-08-20 16:27:11 +10:00
utils.c Be a little more diligent when it comes to wchar_t vs. wint_t 2011-08-29 14:13:29 +10:00
utils.h Minor clean-up: replace character constants with wide-char versions 2011-08-25 21:34:41 +10:00

**************************************************************************
*                                                                        *
*              Star Traders: A Game of Interstellar Trading              *
*                 Copyright (C) 1990-2011, 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