1 2 3 4 5 6 7 8 9 10
#include <string.h> int main(void) { char buf[] = "hello world"; explicit_bzero(buf, sizeof(buf)); return strcmp(buf, ""); }