lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs | README

string.h (194B)


      1 /*
      2  * Public domain
      3  * string.h compatibility shim
      4  */
      5 
      6 #include_next <string.h>
      7 
      8 #ifndef LIBCRYPTOCOMPAT_STRING_H
      9 #define LIBCRYPTOCOMPAT_STRING_H
     10 
     11 void explicit_bzero(void *, size_t);
     12 
     13 #endif