Skip to content
Snippets Groups Projects
Commit 77687068 authored by Dario Pinto's avatar Dario Pinto
Browse files

update normalize.sh

parent 140b1a71
No related branches found
No related tags found
1 merge request!6Feature/new cgc
This commit is part of merge request !6. Comments created here will be created in the context of that merge request.
......@@ -5,26 +5,38 @@ if [ $# -lt 1 ]; then
exit 1
fi
sed -i 's/cgc_atoi/atoi/g' $*
sed -i 's/cgc_bzero/bzero/g' $*
sed -i 's/cgc_calloc/calloc/g' $*
sed -i 's/cgc_fabs/fabs/g' $*
sed -i 's/cgc_cos/cos/g' $*
sed -i 's/cgc_exit/exit/g' $*
sed -i 's/cgc_floor/floor/g' $*
sed -i 's/cgc_isalpha/isalpha/g' $*
sed -i 's/cgc_isdigit/isdigit/g' $*
sed -i 's/cgc_islower/islower/g' $*
sed -i 's/cgc_isupper/isupper/g' $*
sed -i 's/cgc_isspace/isspace/g' $*
sed -i 's/cgc_free/free/g' $*
sed -i 's/cgc_log/log/g' $*
sed -i 's/cgc_malloc/malloc/g' $*
sed -i 's/cgc_memcmp/memcmp/g' $*
sed -i 's/cgc_memcpy/memcpy/g' $*
sed -i 's/cgc_memset/memset/g' $*
sed -i 's/cgc_pow/pow/g' $*
sed -i 's/cgc_printf/printf/g' $*
sed -i 's/cgc_realloc/realloc/g' $*
sed -i 's/cgc_remainder/remainder/g' $*
sed -i 's/cgc_rint/rint/g' $*
sed -i 's/cgc_sin/sin/g' $*
sed -i 's/cgc_size_t/size_t/g' $*
sed -i 's/cgc_sqrt/sqrt/g' $*
sed -i 's/cgc_strchr/strchr/g' $*
sed -i 's/cgc_strcmp/strcmp/g' $*
sed -i 's/cgc_strcpy/strcpy/g' $*
sed -i 's/cgc_strncpy/strncpy/g' $*
sed -i 's/cgc_strlen/strlen/g' $*
sed -i 's/cgc_strtok/strtok/g' $*
sed -i 's/cgc_strtol/strtol/g' $*
sed -i 's/cgc_tolower/tolower/g' $*
sed -i 's/cgc_toupper/toupper/g' $*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment