Design Pattern Examples
Overview of object-oriented design patterns
strdup.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __STRDUP_H__
8#define __STRDUP_H__
9
10#include <string.h>
11
12#ifdef _MSC_VER
14# define STRDUP _strdup
15#else
17#define STRDUP strdup
18#endif
19
20#endif // __STRDUP_H__