diff options
author | Bruce Momjian | 1999-05-25 16:15:34 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-05-25 16:15:34 +0000 |
commit | 07842084fe3e11041f83563c851236395f481470 (patch) | |
tree | ab9960e67325bec5a97b8b4dd4b2075ce60cc420 /contrib/spi/preprocessor/step1.c | |
parent | 4b04b01aaa460f1e52980f24173dc7a4535efd2d (diff) |
pgindent run over code.
Diffstat (limited to 'contrib/spi/preprocessor/step1.c')
-rw-r--r-- | contrib/spi/preprocessor/step1.c | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/contrib/spi/preprocessor/step1.c b/contrib/spi/preprocessor/step1.c index 9d59c47edd8..1f2c5380d51 100644 --- a/contrib/spi/preprocessor/step1.c +++ b/contrib/spi/preprocessor/step1.c @@ -1,24 +1,27 @@ #include <stdio.h> -char *strtoupper(char *string) +char * +strtoupper(char *string) { - int i ; - for (i=0;i<strlen(string);i++) - { - string[i]=toupper(string[i]); - } - return string; + int i; + + for (i = 0; i < strlen(string); i++) + string[i] = toupper(string[i]); + return string; } -void main ( char argc , char **argv ) +void +main(char argc, char **argv) { - char str[250]; - int sw = 0 ; - while ( fgets (str,240,stdin) ) - { - if ( sw == 0 ) printf("%s",strtoupper(str)); - } + char str[250]; + int sw = 0; + + while (fgets(str, 240, stdin)) + { + if (sw == 0) + printf("%s", strtoupper(str)); + } } |