2009-07-26 18:51:45 +00:00
|
|
|
/**
|
|
|
|
@file
|
|
|
|
|
|
|
|
A few io wrapper functions to simplify file I/O code in LLADD.
|
2004-07-27 21:33:00 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-06-11 21:36:57 +00:00
|
|
|
#include <stasis/common.h>
|
2009-07-26 18:51:45 +00:00
|
|
|
#include <stdio.h>
|
2004-07-27 21:33:00 +00:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __LLADD_IO_H
|
|
|
|
#define __LLADD_IO_H
|
|
|
|
|
|
|
|
long myFseek(FILE * f, long offset, int whence);
|
|
|
|
long myFseekNoLock(FILE * f, long offset, int whence);
|
|
|
|
void myFwrite(const void * dat, long size, FILE * f);
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif /* __LLADD_IO_H */
|