mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 13:08:20 +00:00
14 lines
312 B
C++
14 lines
312 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#ifndef pac_utils_h
|
|
#define pac_utils_h
|
|
|
|
#include <sys/types.h>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
char* copy_string(const char* s);
|
|
string strfmt(const char* fmt, ...);
|
|
char* nfmt(const char* fmt, ...);
|
|
|
|
#endif /* pac_utils_h */
|