Created
September 13, 2022 09:52
-
-
Save Caesar-Victory/bc7c59b13029bf8cc5687a51ae6b9f8c to your computer and use it in GitHub Desktop.
#C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 内联函数,注意原地修改,因此传参均为字符指针,不需要返回值 | |
| static inline void swap(char* a, char* b) { | |
| char c = *a; | |
| *a = *b; | |
| *b = c; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment