added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / prefs / input / args.h
blob99a15f58d688545b30cc37e51ccf0e89877405ed
1 #ifndef _ARGS_H_
2 #define _ARGS_H_
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id: args.h 21130 2004-02-28 22:50:12Z chodorowski $
7 */
9 #include <exec/types.h>
11 /*** Structures *************************************************************/
12 enum Argument
14 FROM,
15 USE,
16 SAVE,
17 COUNT /* Number of arguments */
20 /*** Prototypes *************************************************************/
21 BOOL ReadArguments(VOID);
22 VOID FreeArguments(VOID);
23 IPTR GetArgument(enum Argument arg);
25 /*** Macros *****************************************************************/
26 #define ARG(a) GetArgument((a))
28 #endif /* _ARGS_H_ */