mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
12 lines
172 B
C
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
|