File: gd_error_count.3in

package info (click to toggle)
libgetdata 0.11.0-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,144 kB
  • sloc: ansic: 100,814; cpp: 4,843; fortran: 4,548; f90: 2,561; python: 2,406; perl: 2,274; makefile: 1,487; php: 1,465; sh: 86
file content (66 lines) | stat: -rw-r--r-- 1,897 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.\" gd_error_count.3.  The gd_error_count man page.
.\"
.\" Copyright (C) 2011, 2013, 2016 D.V. Wiebe
.\"
.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.\"
.\" This file is part of the GetData project.
.\"
.\" Permission is granted to copy, distribute and/or modify this document
.\" under the terms of the GNU Free Documentation License, Version 1.2 or
.\" any later version published by the Free Software Foundation; with no
.\" Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
.\" Texts.  A copy of the license is included in the `COPYING.DOC' file
.\" as part of this distribution.
.\"
.TH gd_error_count 3 "25 December 2016" "Version 0.10.0" "GETDATA"

.SH NAME
gd_error_count \(em report the number of errors encountered by the GetData
library

.SH SYNOPSIS
.B #inlcude <getdata.h>
.HP
.SC
.BI "int gd_error_count(DIRFILE *" dirfile );
.EC

.SH DESCRIPTION
The first time
.FN gd_error_count
is called with the DIRFILE object
.ARG dirfile ,
it returns the number of errors encountered by the GetData library while
operating on
.ARG dirfile
since its creation.  Calling this function resets the internal count, so
that subsequent calls to
.FN gd_error_count
return the number of errors encountered only since the previous call to this
function, for the specified DIRFILE.

The errors themselves are not cached by the library.  The error status of the 
.I last
library call on
.ARG dirfile
(which might be
.BR GD_E_OK ,
indicating no error) can be obtained by calling
.F3 gd_error .

.SH RETURN VALUE
The
.FN gd_error_count
function always returns the number of GetData errors encountered since the last
time it was called, or since the dirfile was created. This will be zero, if no
error has occurred over the given time.

.SH HISTORY
The
.FN gd_error_count
function appeared in GetData-0.8.0.

.SH SEE ALSO
.F3 gd_error ,
.F3 gd_error_string