Design Pattern Examples
Overview of object-oriented design patterns
stricmp.h
Go to the documentation of this file.
1
8
#pragma once
9
#ifndef __STRICMP_H__
10
#define __STRICMP_H__
11
12
#include <string>
13
14
namespace
Helpers
15
{
24
int
stricmp
(
const
char
* first,
const
char
* second);
25
34
int
stricmp
(
const
std::string& first,
const
std::string& second);
35
36
}
// end namespace
37
38
#endif
// __STRICMP_H__
39
Helpers
The namespace containing all the "helper" functions in the C++ code.
Definition:
argumentinvalid_error.h:14
Helpers::stricmp
int stricmp(const char *first, const char *second)
Compare two strings in a case-insensitive manner to determine their alphabetical order relative to ea...
Definition:
stricmp.cpp:16
cplusplus
helpers
stricmp.h
Generated on Tue Aug 29 2023 19:47:44 for Design Pattern Examples by
1.9.6