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