This is makcb.c in view mode; [Download] [Up]
# include <stdio.h> # include "charb.h" charb * makcb(str) char *str; { register charb *cb; if ((cb = cballoc(strlen(str)+1)) == NULL) return(NULL); strcpy(cb->c_buf, str); return(cb); }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.