/* @(#)config_extern.h 1.2 95/09/16 */

/*
 * Copyright (c) 1994, 1995 by Wayne C. Gramlich.  All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

#if !defined(CONFIG_EXTERN_H)
#define CONFIG_EXTERN_H

#include "config_typedef.h"
#include "error_typedef.h"
#include "str_typedef.h"

extern Str config_annote_directory(Config);
extern Config config_create(Errors);
extern Str config_http_root(Config);
extern Str config_home_root(Config);
extern Str config_host_name(Config);
extern Str config_original_directory(Config);

#endif /* !defined(CONFIG_EXTERN_H) */


