Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -1,8 +1,8 @@
/*
* strtok.c
*
* Ullrich von Bassewitz, 11.12.1998
*/
** strtok.c
**
** Ullrich von Bassewitz, 11.12.1998
*/
@@ -43,8 +43,8 @@ char* __fastcall__ strtok (register char* s1, const char* s2)
}
/* Search the address of the first element in s1 that equals none
* of the characters in s2.
*/
** of the characters in s2.
*/
while ((c = *s1) && strchr (s2, c) != 0) {
++s1;
}