Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/titlecase.h File Reference

Declaration of the titlecase() function, for making a word lowercase with the first letter uppercase. More...

#include <string>
Include dependency graph for lusplus/helpers/titlecase.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 __TITLECASE_H__
 

Functions

std::string titlecase (const std::string &s)
 Convert the first word (or only word) in the given string to lowercase then make the first letter uppercase. It does not touch any of the other words after the first.
 

Detailed Description

Declaration of the titlecase() function, for making a word lowercase with the first letter uppercase.

Definition in file lusplus/helpers/titlecase.h.

Macro Definition Documentation

◆ __TITLECASE_H__

#define __TITLECASE_H__

Definition at line 8 of file lusplus/helpers/titlecase.h.