http://www.youtube.com/user/AltComp126/videos
http://www.youtube.com/user/AltComp126/videos
http://www.youtube.com/user/AltComp126/videos
http://www.youtube.com/user/AltComp126/videos
I am thinking about finishing implementing this function,
I will write more of it later.
My videos talk about these computer programming topics:
typedef struct
{
unsigned long stringType;
unsigned long baseOffset;
unsigned long length;
} ASCII_TypedStringStruct;
ASCII_TypedStringStruct * OPCODE__Compiler_SimpleTextFile_getTypedString(FILE *srcfilehandle, unsigned long fileOffset);
ASCII_TypedStringStruct * OPCODE__Compiler_SimpleTextFile_getTypedString(FILE *srcfilehandle, unsigned long fileOffset)
{
ASCII_TypedStringStruct *toRet;
//Try to allocate memory for our typed string structure.
//If it fails, just return with a NULL pointer:
///
toRet=malloc(sizeof(ASCII_TypedStringStruct));
if(toRet!=NULL){
}return toRet;
}