Archived
1
0
Fork 0

Adding utils.c.

This commit is contained in:
Henrik Hautakoski 2013-02-08 21:54:54 +01:00
parent e78f8bea4d
commit c1b99a9e7e
2 changed files with 23 additions and 0 deletions

10
utils.h Normal file
View file

@ -0,0 +1,10 @@
#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 */