summaryrefslogtreecommitdiff
path: root/pack.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-29 18:51:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-29 18:51:39 +0000
commit45f6fbf339e3666ea1e64d9e13fd40c61977248d (patch)
tree33935bb9e249626fbba18fb2b187ccfd24d5ee90 /pack.c
parent5d394118fff7fb94cbba4fc2e3f6d740932e33ce (diff)
* removed trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'pack.c')
-rw-r--r--pack.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/pack.c b/pack.c
index 3a6b3a68d0..245c940237 100644
--- a/pack.c
+++ b/pack.c
@@ -330,7 +330,7 @@ static unsigned long utf8_to_uv(const char*,long*);
* s | Integer | 16-bit signed integer, native endian (int16_t)
* l | Integer | 32-bit signed integer, native endian (int32_t)
* q | Integer | 64-bit signed integer, native endian (int64_t)
- * | |
+ * | |
* S_ | Integer | unsigned short, native endian
* I, I_ | Integer | unsigned int, native endian
* L_ | Integer | unsigned long, native endian
@@ -346,7 +346,7 @@ static unsigned long utf8_to_uv(const char*,long*);
* | |
* U | Integer | UTF-8 character
* w | Integer | BER-compressed integer
- *
+ *
* Float | |
* Directive | | Meaning
* ------------------------------------------------------------------------
@@ -356,7 +356,7 @@ static unsigned long utf8_to_uv(const char*,long*);
* e | Float | single-precision float, little-endian byte order
* G | Float | double-precision float, network (big-endian) byte order
* g | Float | single-precision float, network (big-endian) byte order
- *
+ *
* String | |
* Directive | | Meaning
* ------------------------------------------------------------------------
@@ -373,7 +373,7 @@ static unsigned long utf8_to_uv(const char*,long*);
* | | (if count is 0, no line feed are added, see RFC 4648)
* P | String | pointer to a structure (fixed-length string)
* p | String | pointer to a null-terminated string
- *
+ *
* Misc. | |
* Directive | | Meaning
* ------------------------------------------------------------------------
@@ -1258,7 +1258,7 @@ infected_str_new(const char *ptr, long len, VALUE str)
* | |
* U | Integer | UTF-8 character
* w | Integer | BER-compressed integer (see Array.pack)
- *
+ *
* Float | |
* Directive | Returns | Meaning
* --------------------------------------------------------------
@@ -1268,7 +1268,7 @@ infected_str_new(const char *ptr, long len, VALUE str)
* e | Float | single-precision float, little-endian byte order
* G | Float | double-precision float, network (big-endian) byte order
* g | Float | single-precision float, network (big-endian) byte order
- *
+ *
* String | |
* Directive | Returns | Meaning
* --------------------------------------------------------------
@@ -1285,7 +1285,7 @@ infected_str_new(const char *ptr, long len, VALUE str)
* | | base64 encoded string (RFC 4648) if followed by 0
* P | String | pointer to a structure (fixed-length string)
* p | String | pointer to a null-terminated string
- *
+ *
* Misc. | |
* Directive | Returns | Meaning
* --------------------------------------------------------------
@@ -1554,7 +1554,7 @@ pack_unpack(VALUE str, VALUE fmt)
integer_size = QUAD_SIZE;
bigendian_p = BIGENDIAN_P();
goto unpack_integer;
-
+
case 'Q':
signed_p = 0;
integer_size = QUAD_SIZE;