blob: d0a0d63086fae3b0682af7261df21f7d0f7f066d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef INCLUDE_git_errors_h__
#define INCLUDE_git_errors_h__
/**
* @file git/errors.h
* @brief Git error handling routines and variables
* @ingroup Git
* @{
*/
#include "common.h"
#include "thread-utils.h"
GIT_BEGIN_DECL
/** The git errno. */
GIT_EXTERN(int) GIT_TLS git_errno;
/**
* strerror() for the Git library
* @param num The error code to explain
* @return a string explaining the error code
*/
GIT_EXTERN(const char *) git_strerror(int num);
/** @} */
GIT_END_DECL
#endif
|