reformatting: printbuffer

This commit is contained in:
Max Bruckner 2016-09-27 23:45:52 +07:00
parent d5bd497636
commit b53ce73709
1 changed files with 6 additions and 1 deletions

View File

@ -213,7 +213,12 @@ static int pow2gt (int x)
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)
{