metasploit-framework/external/source/byakugan/test/testPattern.cpp

11 lines
163 B
C++
Executable File

#include <stdio.h>
#include "../msfpattern.h"
int main() {
char ownme[256];
msf_pattern_create(500, ownme);
printf("%s\n", ownme);
return (0);
}