Skip to content

Latest commit

 

History

History
111 lines (98 loc) · 2.6 KB

File metadata and controls

111 lines (98 loc) · 2.6 KB
title _get_errno | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
apiname
_get_errno
apilocation
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-runtime-l1-1-0.dll
apitype DLLExport
f1_keywords
_get_errno
dev_langs
C++
helpviewer_keywords
get_errno function
errno global variable
_get_errno function
ms.assetid b3fd5ebc-f41b-4314-a2f4-2f2d79d6e740
caps.latest.revision 19
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

_get_errno

Gets the current value of the errno global variable.

Syntax

errno_t _get_errno(   
   int * pValue   
);  

Parameters

[out] pValue
A pointer to an integer to be filled with the current value of the errno variable.

Return Value

Returns zero if successful; an error code on failure. If pValue is NULL, the invalid parameter handler is invoked as described in Parameter Validation. If execution is allowed to continue, this function sets errno to EINVAL and returns EINVAL.

Remarks

Possible values of errno are defined in Errno.h. Also, see errno Constants.

Example

// crt_get_errno.c  
#include <stdio.h>  
#include <fcntl.h>  
#include <sys/stat.h>  
#include <share.h>  
#include <errno.h>  
  
int main()  
{  
   errno_t err;  
   int pfh;  
   _sopen_s( &pfh, "nonexistent.file", _O_WRONLY, _SH_DENYNO, _S_IWRITE );  
   _get_errno( &err );  
   printf( "errno = %d\n", err );  
   printf( "fyi, ENOENT = %d\n", ENOENT );  
}  
errno = 2  
fyi, ENOENT = 2  

Requirements

Routine Required header Optional header
_get_errno <stdlib.h> <errno.h>

For more compatibility information, see Compatibility in the Introduction.

See Also

_set_errno
errno, _doserrno, _sys_errlist, and _sys_nerr