extern malloc extern free extern fprintf section .data section .text global strCmp global strClone global strDelete global strPrint global strLen ; ** String ** ; int32_t strCmp(char* a, char* b) strCmp: ret ; char* strClone(char* a) strClone: ret ; void strDelete(char* a) strDelete: ret ; void strPrint(char* a, FILE* pFile) strPrint: ret ; uint32_t strLen(char* a) strLen: ret