Design Pattern Examples
Overview of object-oriented design patterns
helpers/titlecase.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __TITLECASE_H__
8#define __TITLECASE_H__
9
21char* titlecase(const char* s);
22
23#endif // __TITLECASE_H__
24
char * titlecase(const char *s)
Convert the first word (or only word) in the given string to lowercase then make the first letter upp...
Definition: titlecase.c:15