-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_reverse.cc
54 lines (45 loc) · 1.17 KB
/
string_reverse.cc
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
52
53
54
/*
* =====================================================================================
*
* Filename: string_reverse.c
*
* Description: string reverse
*
* Version: 1.0
* Created: 05/03/12 19:05:19
* Revision: none
* Compiler: gcc
*
* Author: Ganesh Muniyandi (gm), [email protected]
* Company: Open Source
*
* =====================================================================================
*/
#include <string.h>
#include <stdio.h>
#include <assert.h>
#define SWP(x,y) (x^=y, y^=x, x^=y)
void strrev(char *start)
{
if (start == NULL) return;
char *end = start;
while(end && *end) ++end; /* find eos */
for(--end; start < end; ++start, --end)
SWP(*start, *end);
return;
}
int main(int argc, char** argv) {
/* Case 1: Null String */
char nullstring[] = "";
strrev(nullstring);
assert(strcmp(nullstring, "") == 0);
/* Case 2: NULL Ptr */
char *null = NULL;
strrev(null);
/* Case 3: Valid string */
char Valid [] = "ValidString";
strrev(Valid);
assert(strcmp(Valid, "gnirtSdilaV") == 0);
printf("%s\n", Valid);
return 0;
}