mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
17 lines
203 B
C
17 lines
203 B
C
#include "f2c.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef KR_headers
|
|
integer i_len(s, n) char *s; ftnlen n;
|
|
#else
|
|
integer i_len(char *s, ftnlen n)
|
|
#endif
|
|
{
|
|
return(n);
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|