Code formating

This commit is contained in:
2013-10-15 20:41:26 +02:00
parent 0a0b6660b4
commit 99849ef69a
10 changed files with 976 additions and 1103 deletions

10
util.c
View File

@@ -4,12 +4,12 @@
#include "util.h"
char *String_Copy(char *str){
char *String_Copy(char *str) {
char *strnew;
int len;
len=strlen(str);
strnew=malloc(len+1);
strcpy(strnew,str);
return(strnew);
len = strlen(str);
strnew = malloc(len + 1);
strcpy(strnew, str);
return (strnew);
}