Mr. X

Sub4Sub Forums Sub4Sub YouTube Mr. X

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #545849
    Fantastic Akash1837
    Participant

    Like share and subscribe my channel

    #545852
    UDocProject
    Participant

    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;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.