int vsip_init(void*);
This function initializes the VSIPL library and must be called before any other VSIPL functions are used. It can be called multiple times without side effects.
void*: The argument is unused and should be set to 0 or NULL.
Returns 0 on success.
Returns a non-zero value on error.
int result; // Initialize the VSIPL library result = vsip_init(NULL); if (result != 0) { // Handle error }