/* ISC license. */ #include #include void autosurf (char *s, size_t n) { static SURFSchedule ctx = SURFSCHEDULE_ZERO ; static int need4seed = 1 ; if (need4seed) { char tmp[160] ; random_makeseed(tmp) ; surf_init(&ctx, tmp) ; need4seed = 0 ; } surf(&ctx, s, n) ; }