mirror of
https://github.com/uffejakobsen/acme.git
synced 2025-02-16 19:32:16 +00:00
19 lines
339 B
C
19 lines
339 B
C
|
// ToACME - converts other source codes to ACME format.
|
||
|
// Copyright (C) 1999-2003 Marco Baye
|
||
|
// Have a look at "main.c" for further info
|
||
|
//
|
||
|
// version
|
||
|
//
|
||
|
#ifndef version_H
|
||
|
#define version_H
|
||
|
|
||
|
|
||
|
// Prototypes
|
||
|
//
|
||
|
extern void version_show_info(const char[]);
|
||
|
extern int version_parse_id(const char[]);
|
||
|
extern void version_main(void);
|
||
|
|
||
|
|
||
|
#endif
|