Files
cantera/ext/math/printstring.c
2012-02-03 23:41:00 +00:00

12 lines
172 B
C

#include <stdio.h>
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif
void printstring_(char* s, ftnlen ls) {
printf("%s",s);
}
#ifdef __cplusplus
}
#endif