Adelsbach/VSIPL
Core Light Programming Reference Guide
DD-00014-015
Core Light

4.1 vsip_init - Initialize

int vsip_init(void*);
Description

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.

Parameters
Return Value
Example

int result; 
 
// Initialize the VSIPL library 
result = vsip_init(NULL); 
 
if (result != 0) { 
    // Handle error 
}