#define MAX_MEM_SIZE 100 int GetMem(int iLen, void **ppMem) { if (NULL == ppMem) { return -1; } if (iLen <= 0) { return 0; } else if (iLen < MAX_MEM_SIZE) { *ppMem = malloc(iLen); return iLen; } else { *ppMem = malloc(MAX_MEM_SIZE); re...