Codebase list fastforward / b73c1617-2941-486b-85bb-bad20d4ad289/upstream alloc_re.c
b73c1617-2941-486b-85bb-bad20d4ad289/upstream

Tree @b73c1617-2941-486b-85bb-bad20d4ad289/upstream (Download .tar.gz)

alloc_re.c @b73c1617-2941-486b-85bb-bad20d4ad289/upstreamraw · 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;
}