ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/dynbuf.h
(Generate patch)

Comparing deliantra/server/include/dynbuf.h (file contents):
Revision 1.8 by root, Sat May 26 15:44:03 2007 UTC vs.
Revision 1.9 by root, Sun May 27 23:22:29 2007 UTC

57 } 57 }
58 58
59 char *alloc (int size) 59 char *alloc (int size)
60 { 60 {
61 char *res = force (size); 61 char *res = force (size);
62 ptr += size; 62 ptr += size;
63 return res; 63 return res;
64 } 64 }
65 65
66 void fadd (char c) { *ptr++ = c; } 66 void fadd (char c) { *ptr++ = c; }
67 void fadd (unsigned char c) { fadd (char (c)); } 67 void fadd (unsigned char c) { fadd (char (c)); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines