Codebase list fastforward / fc81b169-8458-4b69-8496-3a2c635402b7/main alloc_re.c
fc81b169-8458-4b69-8496-3a2c635402b7/main

Tree @fc81b169-8458-4b69-8496-3a2c635402b7/main (Download .tar.gz)

alloc_re.c @fc81b169-8458-4b69-8496-3a2c635402b7/mainraw · history · blame

#include "alloc.h"
#include "byte.h"

int alloc_re(x,m,n)
char **x;
unsigned int m;
unsigned int n;
{
  char *y;
 
  y = alloc(n);
  if (!y) return 0;
  byte_copy(y,m,*x);
  alloc_free(*x);
  *x = y;
  return 1;
}