| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .TH RCCE 3 2010-02-04 "RCCE MANPAGE" "RCCE Library"
- .SH NAME
- RCCE_error_string \- Sets an error string.
- .SH SYNOPSIS
- .B #include <rcce.h>
- .sp
- .BI "int RCCE_error_string(int " err_no ", char * " error_string ", int * " string_length );
- .SH DESCRIPTION
- For a given numerical code,
- .BR RCCE_error_string()
- sets a descriptive string and sets the length of that string.
- .TP 20
- .B err_no
- Given numerical code.
- .TP
- .B error_string
- Descriptive error string.
- .TP
- .B string_length
- Length of th descriptive string.
- .SH "RETURN VALUE"
- Upon successful completion
- .BR RCCE_error_string()
- returns
- .BR RCCE_SUCCESS .
- .SH ERRORS
- Look in
- .BR rcce.h
- for additional error codes.
- .SH "SEE ALSO"
- rcce.h(5)
- .SH EXAMPLE
|