librpipErrorPrint

void librpipErrorPrint(void);

Description

This function prints to stderr the error description set by a previous function.

Parameters

None.

Returns

Nothing

Example

Attempt to toggle an invalid GPIO pin and print resultant error code.

if(!librpipGpioPinToggle(32)) {
        librpipErrorPrint(); 
}