fixed typos.
parent
9bb30d2797
commit
2e578322c9
@ -1,6 +1,6 @@
|
||||
#include "str.h"
|
||||
#include "buffer.h"
|
||||
|
||||
int buffer_puts(buffer* b,const char* x) {
|
||||
int buffer_putsalign(buffer* b,const char* x) {
|
||||
return buffer_putalign(b,x,str_len(x));
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "str.h"
|
||||
#include "buffer.h"
|
||||
|
||||
int buffer_puts(buffer* b,const char* x) {
|
||||
int buffer_putsflush(buffer* b,const char* x) {
|
||||
return buffer_putflush(b,x,str_len(x));
|
||||
}
|
||||
|
Loading…
Reference in New Issue