comparison place.h @ 153:28ac21a359d1

needs include guard
author David A. Holland
date Fri, 12 Jun 2015 00:35:46 -0400
parents 2b0b61fd1a36
children f14f5352956c
comparison
equal deleted inserted replaced
152:e787bd67bf88 153:28ac21a359d1
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE. 27 * POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #ifndef PLACE_H
31 #define PLACE_H
32
30 #include <stdbool.h> 33 #include <stdbool.h>
31 34
32 enum places { 35 enum places {
33 P_NOWHERE, 36 P_NOWHERE,
34 P_BUILTIN, 37 P_BUILTIN,
52 55
53 const char *place_getparsedir(const struct place *incplace); 56 const char *place_getparsedir(const struct place *incplace);
54 57
55 const struct placefile *place_addfile(const struct place *incplace, 58 const struct placefile *place_addfile(const struct place *incplace,
56 const char *name, bool fromsystemdir); 59 const char *name, bool fromsystemdir);
60
61 #endif /* PLACE_H */