Richard Boegli's CnC_Generals_Zero_Hour Fork WIP
This is documentation of Richard Boegil's Zero Hour Fork
 
Loading...
Searching...
No Matches
trim.cpp
Go to the documentation of this file.
1/*
2** Command & Conquer Generals Zero Hour(tm)
3** Copyright 2025 Electronic Arts Inc.
4**
5** This program is free software: you can redistribute it and/or modify
6** it under the terms of the GNU General Public License as published by
7** the Free Software Foundation, either version 3 of the License, or
8** (at your option) any later version.
9**
10** This program is distributed in the hope that it will be useful,
11** but WITHOUT ANY WARRANTY; without even the implied warranty of
12** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13** GNU General Public License for more details.
14**
15** You should have received a copy of the GNU General Public License
16** along with this program. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19/***********************************************************************************************
20 *** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
21 ***********************************************************************************************
22 * *
23 * Project Name : Command & Conquer *
24 * *
25 * $Archive:: /Commando/Code/wwlib/trim.cpp $*
26 * *
27 * $Author:: Denzil_l $*
28 * *
29 * $Modtime:: 11/08/01 11:35a $*
30 * *
31 * $Revision:: 4 $*
32 * *
33 *---------------------------------------------------------------------------------------------*
34 * Functions: *
35 * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
36
37#include "always.h"
38#include "trim.h"
39#include <string.h>
40
41#ifdef _UNIX
42#include <wctype.h>
43#endif // _UNIX
44
45/***********************************************************************************************
46 * strtrim -- Trim leading and trailing white space off of string. *
47 * *
48 * This routine will remove the leading and trailing whitespace from the string specifed. *
49 * The string is modified in place. *
50 * *
51 * INPUT: buffer -- Pointer to the string to be trimmed. *
52 * *
53 * OUTPUT: none *
54 * *
55 * WARNINGS: none *
56 * *
57 * HISTORY: *
58 * 02/06/1997 JLB : Created. *
59 *=============================================================================================*/
60char* strtrim(char* buffer)
61{
62 if (buffer) {
63 /* Strip leading white space from the string. */
64 char* source = buffer;
65
66 while ((*source != 0) && ((unsigned char)*source <= 32)) {
67 ++source;
68 }
69
70 if (source != buffer) {
71 strcpy(buffer, source);
72 }
73
74 /* Clip trailing white space from the string. */
75 for (int index = strlen(buffer) - 1; index >= 0; --index) {
76 if ((*source != 0) && ((unsigned char)buffer[index] <= 32)) {
77 buffer[index] = '\0';
78 } else {
79 break;
80 }
81 }
82 }
83
84 return buffer;
85}
86
87
88wchar_t* wcstrim(wchar_t* buffer)
89{
90 if (buffer) {
91 /* Strip leading white space from the string. */
92 wchar_t* source = buffer;
93
94 while ((*source != 0) && ((unsigned int)*source <= 32)) {
95 ++source;
96 }
97
98 if (source != buffer) {
99 wcscpy(buffer, source);
100 }
101
102 /* Clip trailing white space from the string. */
103 for (int index = wcslen(buffer) - 1; index >= 0; --index) {
104 if ((*source != 0) && ((unsigned int)buffer[index] <= 32)) {
105 buffer[index] = L'\0';
106 } else {
107 break;
108 }
109 }
110 }
111
112 return buffer;
113}
wchar_t * wcstrim(wchar_t *buffer)
Definition trim.cpp:88
char * strtrim(char *buffer)
Definition trim.cpp:60