/src/util.h
https://code.google.com/ · C Header · 38 lines · 10 code · 4 blank · 24 comment · 0 complexity · 4afbc534e506d8a3b05dd2ec97ea06c9 MD5 · raw file
- /*
- $Id: util.h 231 2011-06-27 13:46:19Z marc.noirot $
- FLV Metadata updater
- Copyright (C) 2007-2012 Marc Noirot <marc.noirot AT gmail.com>
- This file is part of FLVMeta.
- FLVMeta is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- FLVMeta is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with FLVMeta; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #ifndef __UTIL_H__
- #define __UTIL_H__
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- /* determine whether two paths physically point to the same file */
- int same_file(const char * file1, const char * file2);
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
- #endif /* __UTIL_H__ */