Initializing Standard Library

The example below demonstrates how to initialize the standard library:

#include "ST_API.h"

int main(void)
{
  /* Architecture and standard library initialization */
  arInit();
  stInit();

  /* TO DO: Write your application code here */
  /* ... */

  /* Architecture de-initialization */
  arDeinit();

  /* Return test status */
  return 0;
}
Would you like me to process the next example, perhaps regarding memory allocation or specific library usage?
SpaceShadow documentation