24 lines
443 B
C
Raw Normal View History

2015-02-26 09:02:31 -06:00
/*************************************************************************
PURPOSE: (Cannonball Prototypes)
**************************************************************************/
#ifndef CANNON_DT_PROTO
#define CANNON_DT_PROTO
2015-02-26 09:02:31 -06:00
#include <stdio.h>
#include "cannon.h"
#ifdef __cplusplus
extern "C" {
#endif
int cannon_dt(CANNON*) ;
int cannon_init(CANNON*) ;
int cannon_default_data(CANNON*) ;
#ifdef __cplusplus
}
#endif
#endif