apply astyle
This commit is contained in:
parent
53506973a4
commit
9f11c01450
|
@ -2,13 +2,15 @@
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
char *replace(char *str, char before, char after) {
|
||||
char *replace(char *str, char before, char after)
|
||||
{
|
||||
while (strchr(str,before))
|
||||
*strchr(str,before) = after;
|
||||
return str;
|
||||
}
|
||||
|
||||
int main() {
|
||||
int main()
|
||||
{
|
||||
FILE *f = fopen("times.log", "rt");
|
||||
if (!f)
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue