mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00
Broxygen can now read a config file specifying particular targets.
Though nothing currently gets built as most dependency/outdated checks and doc-generation methods are still skeleton code.
This commit is contained in:
parent
1fabbd441c
commit
bdd359d58c
9 changed files with 325 additions and 24 deletions
|
@ -17,6 +17,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -105,6 +106,10 @@ std::string extract_ip_and_len(const std::string& i, int* len);
|
|||
std::string get_unescaped_string(const std::string& str);
|
||||
std::string get_escaped_string(const std::string& str, bool escape_all);
|
||||
|
||||
std::vector<std::string>* tokenize_string(std::string input,
|
||||
const std::string& delim,
|
||||
std::vector<std::string>* rval = 0);
|
||||
|
||||
extern char* copy_string(const char* s);
|
||||
extern int streq(const char* s1, const char* s2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue