My Project
bytebuf.cc
Go to the documentation of this file.
1#include "bytebuf.h"
2
3char *allocate_space(size_t n) {
4 return new char[n];
5}
6
7void free_space(size_t n, char *p) {
8 delete [] p;
9}
void free_space(size_t n, char *p)
Definition: bytebuf.cc:7
char * allocate_space(size_t n)
Definition: bytebuf.cc:3
int p
Definition: cfModGcd.cc:4078