CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/byakugan/test/testPattern.c
Views: 11780
1
#include <stdlib.h>
2
#include "../msfpattern.h"
3
4
int main() {
5
char ownme[256];
6
7
msf_pattern_create(500, ownme);
8
printf("%s\n", ownme);
9
return (0);
10
}
11
12