optimize TGitCache for CLI operations
[TortoiseGit.git] / src / TortoiseMerge / libsvn_diff / svn_nls.h
blob01be3c27269fcc784a36036476afb66cb24c8587
1 /**
2 * @copyright
3 * ====================================================================
4 * Copyright (c) 2000-2005, 2008 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 * ====================================================================
16 * @endcopyright
18 * @file svn_nls.h
19 * @brief Support functions for NLS programs
24 #ifndef SVN_NLS_H
25 #define SVN_NLS_H
27 #include "svn_types.h"
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
33 /** Set up the NLS.
34 * Return the error @c APR_EINVAL or @c APR_INCOMPLETE if an
35 * error occurs.
37 * @note This function is for bindings. You should usually
38 * use svn_cmdline_init() instead of calling this
39 * function directly. This function should be called
40 * after initializing APR.
42 * @since New in 1.3.
44 svn_error_t *
45 svn_nls_init(void);
47 #ifdef __cplusplus
49 #endif /* __cplusplus */
51 #endif /* SVN_NLS_H */