diff options
author | Magnus Lundborg <magnus.lundborg@scilifelab.se> | 2012-12-04 11:07:04 (GMT) |
---|---|---|
committer | Magnus Lundborg <magnus.lundborg@scilifelab.se> | 2012-12-04 11:07:04 (GMT) |
commit | 7d8af09a7ec914886daa85365b4b9e884cf502d2 (patch) | |
tree | 3362a6ea398725be61dce21b820235ecc599cd98 /src | |
parent | 490d962ee188cc5d15072460ddf0d44fed1b0afa (diff) |
Improved comments
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tng_io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index 1cd2b9d..2be56fd 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -35,7 +35,7 @@ /* This function swaps the byte order of a 32 bit numerical variable. - It does not only work with integer, but e.g. floats need casting */ + It does not only work with integer, but e.g. floats need casting. */ static inline tng_function_status tng_swap_byte_order_32 (const tng_trajectory_t tng_data, int32_t *v) { @@ -64,8 +64,8 @@ static inline tng_function_status tng_swap_byte_order_32 } /* This function swaps the byte order of a 64 bit numerical variable. - It does not only work with integer, but e.g. floats need casting - The byte order swapping routine can convert five different byte + It does not only work with integer, but e.g. floats need casting. + The byte order swapping routine can convert four different byte orders to big endian. */ static inline tng_function_status tng_swap_byte_order_64 (const tng_trajectory_t tng_data, int64_t *v) |