Design Pattern Examples
Overview of object-oriented design patterns
stricmp.h File Reference

Declaration of the stricmp function, case-insensitive string comparison for narrow character strings. More...

#include <string>
Include dependency graph for stricmp.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  Helpers
 The namespace containing all the "helper" functions in the C++ code.
 

Macros

#define __STRICMP_H__
 

Functions

int stricmp (const char *first, const char *second)
 Compare two strings in a case-insensitive manner to determine their alphabetical order relative to each other.
 
int stricmp (const std::string &first, const std::string &second)
 Compare two strings in a case-insensitive manner to determine their alphabetical order relative to each other.
 

Detailed Description

Declaration of the stricmp function, case-insensitive string comparison for narrow character strings.

Function to compare two strings in a case-insensitive way. Handles const char* and std::string as arguments.

Definition in file stricmp.h.

Macro Definition Documentation

◆ __STRICMP_H__

#define __STRICMP_H__

Definition at line 10 of file stricmp.h.