mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
24 lines
432 B
C++
24 lines
432 B
C++
#define binpac_regex_h
|
|
|
|
#include <stdlib.h>
|
|
#include "binpac_bytestring.h"
|
|
|
|
namespace binpac
|
|
{
|
|
|
|
std::string std_string(bytestring const *s)
|
|
{
|
|
return std::string((const char *) s->begin(), (const char *) s->end());
|
|
}
|
|
|
|
int bytestring_to_int(bytestring const *s)
|
|
{
|
|
return atoi((const char *) s->begin());
|
|
}
|
|
|
|
double bytestring_to_double(bytestring const *s)
|
|
{
|
|
return atof((const char *) s->begin());
|
|
}
|
|
|
|
} // namespace binpac
|