| 18 | #include "functional_util.h" |
| 19 | |
| 20 | void _set_random_string(char *str, int len) |
| 21 | { |
| 22 | str[len--] = 0; |
| 23 | do { |
| 24 | str[len] = '!' + random('~'-'!'); |
| 25 | } while (len--); |
| 26 | } |
| 27 | |
| 28 | void _set_random_string_smallabt(char *str, int len) |
| 29 | { |
no outgoing calls