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