aboutsummaryrefslogtreecommitdiffhomepage
path: root/env_universal_common.h
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
commitc6372a1b3f56d7022f135b8f1baeaff44816ec7c (patch)
tree1e274b07fc1942d7f39d334771c7d621a164b15f /env_universal_common.h
parent41b8db063c032c673e366d81bccf37022b9c1d4f (diff)
remove trailing spaces
This is done by `sed -i -e 's/[ \t]*$//' *.[c,h]`, which should not introduce any functionality change.
Diffstat (limited to 'env_universal_common.h')
-rw-r--r--env_universal_common.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/env_universal_common.h b/env_universal_common.h
index 97edd711..ed56b415 100644
--- a/env_universal_common.h
+++ b/env_universal_common.h
@@ -76,9 +76,9 @@ typedef struct connection
newline is encountered, the buffer is parsed and cleared.
*/
buffer_t input;
-
+
/**
- The read buffer.
+ The read buffer.
*/
char buffer[ENV_UNIVERSAL_BUFFER_SIZE];
@@ -86,12 +86,12 @@ typedef struct connection
Number of bytes that have already been consumed.
*/
int buffer_consumed;
-
+
/**
- Number of bytes that have been read into the buffer.
+ Number of bytes that have been read into the buffer.
*/
int buffer_used;
-
+
/**
Link to the next connection
@@ -103,7 +103,7 @@ typedef struct connection
/**
A struct representing a message to be sent between client and server
*/
-typedef struct
+typedef struct
{
/**
Number of queues that contain this message. Once this reaches zero, the message should be deleted
@@ -163,7 +163,7 @@ void env_universal_common_get_names( array_list_t *l,
void env_universal_common_set( const wchar_t *key, const wchar_t *val, int export );
/**
- Remove the specified variable.
+ Remove the specified variable.
This function operate agains the local copy of all universal
variables, it does not communicate with any other process.