char *GetBytesShort(short data) { char *ptr = (char *) malloc(sizeof(short)); memcpy(ptr, &data, sizeof(short)); return (char *) *ptr; }. And, in my main.c, ...
確定! 回上一頁