xref: /phasta/phSolver/common/phString.h (revision 1c0c9e76a2a57e9a38ed6f67e8365b6f3d5d3274)
1 #ifndef PHSOLVER_PHIO_H
2 #define PHSOLVER_PHIO_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7   void phstr_appendInt(char* dest, int v);
8   void phstr_appendDbl(char* dest, double src);
9   void phstr_appendStr(char* dest, char* src);
10 #ifdef __cplusplus
11 }
12 #endif
13 #endif
14 
15