/*
 *
 * Cross-platform getcwd 
 *
 * Copyright 2005 Syd Logan, All Rights Reserved
 *
 * This code is distributed without warranty. You are free to use this
 * code for any purpose, however, if this code is republished or
 * redistributed in its original form, as hardcopy or electronically,
 * then you must include this copyright notice along with the code.
 *
 */

#if !defined(__PL_GETCWD_H__)
#define __PL_GETCWD_H__

#if defined(XP_WIN)
#include <stddef.h>
#else
#include <sys/types.h>
#endif

#if defined(__cplusplus)
extern "C" {
#endif

char *PL_getcwd(char *buf, size_t size);

#if defined(__cplusplus)
}
#endif

#endif

