diff options
author | Mukund Sivaraman <muks@banu.com> | 2009-09-15 01:11:25 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2009-09-15 01:11:25 +0530 |
commit | 7b9234f394b688991a5b601ff1e487a19de29870 (patch) | |
tree | ccdb923e457666c174311bdf0f2ca4370e27e70c /src/anonymous.c | |
parent | 2cb677759236fe54c24c1ce099a61f54bace3f73 (diff) |
Indent code to Tinyproxy coding style
The modified files were indented with GNU indent using the
following command:
indent -npro -kr -i8 -ts8 -sob -l80 -ss -cs -cp1 -bs -nlps -nprs -pcs \
-saf -sai -saw -sc -cdw -ce -nut -il0
No other changes of any sort were made.
Diffstat (limited to 'src/anonymous.c')
-rw-r--r-- | src/anonymous.c | 45 |
1 files changed, 20 insertions, 25 deletions
diff --git a/src/anonymous.c b/src/anonymous.c index 928abb8..fe57550 100644 --- a/src/anonymous.c +++ b/src/anonymous.c @@ -29,23 +29,21 @@ static hashmap_t anonymous_map = NULL; -short int -is_anonymous_enabled (void) +short int is_anonymous_enabled (void) { - return (anonymous_map != NULL) ? 1 : 0; + return (anonymous_map != NULL) ? 1 : 0; } /* * Search for the header. This function returns a positive value greater than * zero if the string was found, zero if it wasn't and negative upon error. */ -int -anonymous_search (const char *s) +int anonymous_search (const char *s) { - assert (s != NULL); - assert (anonymous_map != NULL); + assert (s != NULL); + assert (anonymous_map != NULL); - return hashmap_search (anonymous_map, s); + return hashmap_search (anonymous_map, s); } /* @@ -54,26 +52,23 @@ anonymous_search (const char *s) * Return -1 if there is an error, otherwise a 0 is returned if the insert was * successful. */ -int -anonymous_insert (const char *s) +int anonymous_insert (const char *s) { - char data = 1; + char data = 1; - assert (s != NULL); + assert (s != NULL); - if (!anonymous_map) - { - anonymous_map = hashmap_create (32); - if (!anonymous_map) - return -1; - } + if (!anonymous_map) { + anonymous_map = hashmap_create (32); + if (!anonymous_map) + return -1; + } - if (hashmap_search (anonymous_map, s) > 0) - { - /* The key was already found, so return a positive number. */ - return 0; - } + if (hashmap_search (anonymous_map, s) > 0) { + /* The key was already found, so return a positive number. */ + return 0; + } - /* Insert the new key */ - return hashmap_insert (anonymous_map, s, &data, sizeof (data)); + /* Insert the new key */ + return hashmap_insert (anonymous_map, s, &data, sizeof (data)); } |