mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-10-31 17:18:47 +00:00
14 lines
214 B
C
14 lines
214 B
C
|
#include "stringdump.h"
|
||
|
#include "debug.h"
|
||
|
|
||
|
struct stringpool mem;
|
||
|
|
||
|
char *dumpstring(char* s, size_t len) {
|
||
|
PFUNC();
|
||
|
return stringpool_add(&mem, s, len);
|
||
|
}
|
||
|
|
||
|
void dumpstring_init(void) {
|
||
|
stringpool_init(&mem);
|
||
|
}
|