1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-24 19:21:35 +01:00
Files
libtins/include/utils.h
2011-08-10 13:35:11 -03:00

17 lines
259 B
C++

#ifndef __UTILS_H
#define __UTILS_H
#include <string>
#include <stdint.h>
namespace Tins {
/* Utils namespace. */
namespace Utils {
uint32_t ip_to_int(const std::string &ip);
std::string ip_to_string(uint32_t ip);
};
};
#endif