3 * ====================================================================
4 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
6 * This software is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at http://subversion.tigris.org/license-1.html.
9 * If newer versions of this license are posted there, you may use a
10 * newer version instead, at your option.
12 * This software consists of voluntary contributions made by many
13 * individuals. For exact contribution history, see the revision
14 * history and logs, available at http://subversion.tigris.org/.
15 * ====================================================================
19 * @brief Subversion's wrapper around APR's user information interface.
25 #include <apr_pools.h>
27 #include "svn_types.h"
31 #endif /* __cplusplus */
33 /** Get the name of the current user, using @a pool for any necessary
34 * allocation, returning NULL on error.
39 svn_user_get_name(apr_pool_t
*pool
);
41 /** Get the path of the current user's home directory, using @a pool for
42 * any necessary allocation, returning NULL on error.
47 svn_user_get_homedir(apr_pool_t
*pool
);
51 #endif /* __cplusplus */
53 #endif /* SVN_USER_H */