mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
14 lines
224 B
C++
14 lines
224 B
C++
#ifndef GB_GBENCODING_H
|
|
#define GB_GBENCODING_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class HttpMime;
|
|
|
|
namespace GbEncoding {
|
|
uint16_t getCharset(HttpMime *mime, const char *url, const char *s, int32_t slen);
|
|
};
|
|
|
|
|
|
#endif //GB_GBENCODING_H
|