stbds_rand_seed function

  1. @Native<Void Function(Size)>(ffi.Size)>()
void stbds_rand_seed(
  1. int seed
)

for security against attackers, seed the library with a random number, at least time() but stronger is better

Implementation

@ffi.Native<ffi.Void Function(ffi.Size)>()
external void stbds_rand_seed(int seed);