reformatting: printbuffer

This commit is contained in:
Max Bruckner
2016-10-02 19:01:26 +07:00
parent d5bd497636
commit b53ce73709
+6 -1
View File
@@ -213,7 +213,12 @@ static int pow2gt (int x)
return x + 1; return x + 1;
} }
typedef struct {char *buffer; int length; int offset; } printbuffer; typedef struct
{
char *buffer;
int length;
int offset;
} printbuffer;
static char* ensure(printbuffer *p,int needed) static char* ensure(printbuffer *p,int needed)
{ {