comparison place.h @ 164:f14f5352956c

Merge upstream into Joerg's changes.
author David A. Holland
date Fri, 12 Jun 2015 01:00:38 -0400
parents d6e6b3940780 28ac21a359d1
children a2f047301c15
comparison
equal deleted inserted replaced
163:e1dfa3f90b6c 164:f14f5352956c
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
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
30 #ifndef PLACE_H
31 #define PLACE_H
29 32
30 #include <stdbool.h> 33 #include <stdbool.h>
31 34
32 enum places { 35 enum places {
33 P_NOWHERE, 36 P_NOWHERE,
54 57
55 const char *place_getparsedir(const struct place *incplace); 58 const char *place_getparsedir(const struct place *incplace);
56 59
57 const struct placefile *place_addfile(const struct place *incplace, 60 const struct placefile *place_addfile(const struct place *incplace,
58 const char *name, bool fromsystemdir); 61 const char *name, bool fromsystemdir);
62
63 #endif /* PLACE_H */