A SERVICE OF

logo

Sample Source for Debug Examples
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
extern char EXPORTFLD[6];
char *c_proc(unsigned int size, char *inzval)
{
char *ptr;
ptr = malloc(size);
memset(ptr, *inzval, size );
printf("import string: %6s.\n",EXPORTFLD);
return(ptr);
}
Figure 107. Source for C Procedure cproc. cproc is called by DBGEX.
216 ILE RPG for AS/400 Programmer's Guide