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
14namespace 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
The namespace containing all the "helper" functions in the C++ code.
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