mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-01-24 02:02:53 +08:00
15 lines
286 B
C
15 lines
286 B
C
|
#include <unistd.h>
|
||
|
|
||
|
struct stringpool {
|
||
|
size_t alloced;
|
||
|
size_t used;
|
||
|
char* start;
|
||
|
};
|
||
|
|
||
|
void stringpool_init(struct stringpool* sp);
|
||
|
char* stringpool_add(struct stringpool *sp, char* s, size_t len);
|
||
|
|
||
|
void *shm_realloc(void* old, size_t old_size, size_t new_size);
|
||
|
|
||
|
//RcB: DEP "shm.c"
|