blob: 94e1067656d6181127ad5226dc8ac87053174f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MISC_NEW_H
#define MISC_NEW_H
#include "../dlib/dlib.h"
int a_Misc_close_fd(int fd);
Dstr *a_Misc_rdtag(int socket);
char *a_Misc_readtag(int sock);
char *a_Misc_mkdtemp(char *template);
#endif
|