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: bea08b199648a9e9f2c8fbcd9295daf0772dd02d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Use this header for the functions:
// - strlen, strcpy, strcmp
// - memcpy, memcmp, memset

#pragma once

#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