equal
deleted
inserted
replaced
|
1 #ifndef INCL_PHYSFSEXT_IGNORECASE_H |
|
2 #define INCL_PHYSFSEXT_IGNORECASE_H |
|
3 |
1 /** \file ignorecase.h */ |
4 /** \file ignorecase.h */ |
2 |
5 |
3 /** |
6 /** |
4 * \mainpage PhysicsFS ignorecase |
7 * \mainpage PhysicsFS ignorecase |
5 * |
8 * |
42 * Please see LICENSE.txt in the root of the source tree. |
45 * Please see LICENSE.txt in the root of the source tree. |
43 * |
46 * |
44 * \author Ryan C. Gordon. |
47 * \author Ryan C. Gordon. |
45 */ |
48 */ |
46 |
49 |
|
50 #ifdef __cplusplus |
|
51 extern "C" { |
|
52 #endif |
47 |
53 |
48 /** |
54 /** |
49 * \fn int PHYSFSEXT_locateCorrectCase(char *buf) |
55 * \fn int PHYSFSEXT_locateCorrectCase(char *buf) |
50 * \brief Find an existing filename with matching case. |
56 * \brief Find an existing filename with matching case. |
51 * |
57 * |
69 * \return zero if match was found, -1 if the final element (the file itself) |
75 * \return zero if match was found, -1 if the final element (the file itself) |
70 * is missing, -2 if one of the parent directories is missing. |
76 * is missing, -2 if one of the parent directories is missing. |
71 */ |
77 */ |
72 int PHYSFSEXT_locateCorrectCase(char *buf); |
78 int PHYSFSEXT_locateCorrectCase(char *buf); |
73 |
79 |
|
80 #ifdef __cplusplus |
|
81 } |
|
82 #endif |
|
83 |
|
84 #endif /* include-once blocker. */ |
|
85 |
74 /* end of ignorecase.h ... */ |
86 /* end of ignorecase.h ... */ |
75 |
87 |