Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 373a6f054fa86a274fd71aa49bd00d3ebb8c6b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
   aux/functions.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "auxiliary/functions.h"

namespace aux
{

const std::string plural(const char * word, size_t n)
{
	std::string p(word);

	if (n != 1) 
		p += 's';
	return p;
}

const std::string article(const char * word)
{
	std::string w(word);

	if (!w.size())
		return w;

	switch (word[0]) {
		case 'a':
		case 'A':
		case 'e':
		case 'E':
		case 'i':
		case 'I':
		case 'o':
		case 'O':
		case 'u':
		case 'U':
		case 'y':
		case 'Y':
			w.assign("an ");
			break;
		default:
			w.assign("a ");
	}

	w.append(word);
	return w;
}

}