Move a few smaller files to zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-08-07 09:48:18 -07:00
parent 812ac5536d
commit db36688bf0
32 changed files with 335 additions and 193 deletions

View file

@ -11,6 +11,8 @@
using namespace std;
namespace zeek::detail {
static int streq(const char* s1, const char* s2)
{
return ! strcmp(s1, s2);
@ -111,3 +113,5 @@ string make_full_var_name(const char* module_name, const char* var_name)
return full_name;
}
} // namespace zeek::detail