Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dlight/utils.h
Henrik Hautakoski c1b99a9e7e Adding utils.c.
2013-02-08 21:54:54 +01:00

10 lines
No EOL
283 B
C

#ifndef UTILS_H
#define UTILS_H
/* compare two files at a system level.
Returns a non zero value if a and b are the same file. zero otherwise.
("same" in this context is the same location on the filesystem) */
int file_cmp(const char *a, const char *b);
#endif /* UTILS_H */