Ice Sheet System Model  4.18
Code documentation
ApiPrintf.cpp
Go to the documentation of this file.
1 /* \file ApiPrintf.c:
2  * \brief: pyton api specific symbols which are unresolved from libISSMCore.a
3  */
4 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include "./pythonio.h"
12 #include "../../c/shared/shared.h"
13 
14 /*Python printf i/o: */
15 void ApiPrintf(const char* string){
16 
17  /*use printf: */
18  printf("%s",string);
19  return;
20 }
ApiPrintf
void ApiPrintf(const char *string)
Definition: ApiPrintf.cpp:13
pythonio.h