7 lines
81 B
C
7 lines
81 B
C
#pragma once
|
|
|
|
struct buffer{
|
|
int number;
|
|
int size;
|
|
char * data;
|
|
};//buffer
|