
#ifndef BMEPS_H_INCLUDED
#define BMEPS_H_INCLUDED 1

#include <dk.h>

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif

#if DK_HAVE_PROTOTYPES
void bmeps_cfg(char *langdef);
void bmeps_version(FILE *outf);
int  bmeps_run(FILE *outf, FILE *inf, char *name);
int  bmeps_can_handle(char *name);
#else
extern void bmeps_cfg();
extern void bmeps_version();
extern int  bmeps_run();
extern int  bmeps_can_handle();
#endif

#ifdef __cplusplus
}
#endif

#endif
/* ifndef BMEPS_H_INCLUDED */

