Document of c-modernization-kit (doxygen-sample) 1.0.0
Loading...
Searching...
No Matches
code.h File Reference

Go to the source code of this file.

Functions

void reverseString (char *str)
 文字列を反転します。

Function Documentation

◆ reverseString()

void reverseString ( char * str)

文字列を反転します。

Parameters
[in,out]str反転する文字列。

以下は使用例です。

char text[] = "Hello";
printf("%s\n", text); // 出力: olleH
void reverseString(char *str)
文字列を反転します。