Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cstring.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cc82ec986cd1201341ffade1ff2d773be4a2fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Use this header for the functions:
// - strlen, strcpy, strcmp
// - memcpy, memcmp, memset

#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

#include <cstring>

// Use string.h header if cstring is absent for target platform.

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif