blob: 19c1302550c0a1a1eed34fdb1306742f49b8908f (
plain) (
tree)
|
|
#ifndef LOCK_HPP
#define LOCK_HPP
/// Locked FILE I/O
// Changes are made in a separate file until lock_fclose
FILE *lock_fopen (const char *filename, int *info);
void lock_fclose (FILE * fp, const char *filename, int *info);
#endif // LOCK_HPP
|