#ifndef H1UTIL_HEADER_H #define H1UTIL_HEADER_H extern "C" { void h1stop_ (); void fseqr_ (char *, int *, int); void fseqw_ (char *, int); void fseqe_ (); void h1rnin_ (int *); void dstfil_ (); void gufld_ (float [3], float [3]); } inline void h1stop () {h1stop_ ();}; inline int fseqr (char *s, int &i) { fseqr_ (s, &i, strlen (s)); return i; }; inline int fseqr (char *s) { int i; fseqr_ (s, &i, strlen (s)); return i; }; inline void fseqw (char *s) {fseqw_ (s, strlen (s));}; inline void fseqe () {fseqe_ ();}; inline void h1rnin (int i) {h1rnin_ (&i);}; inline void dstfil () {dstfil_ ();}; inline void gufld (float xyz [3], float field [3]) {gufld_ (xyz, field);}; #endif