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__
c
helpers
strdup.h
Generated on Tue Aug 29 2023 19:47:44 for Design Pattern Examples by
1.9.6