• typedef with a member "pointer to itself"
    Hello forum I've a c progamming question: I want to place a function pointer into a typedef with a function parameter "pointer to the typedef itself": typedef struct pExampleStructTypdef {...
  • typedef with a member "pointer to itself"
    Hello forum I've a c progamming question: I want to place a function pointer into a typedef with a function parameter "pointer to the typedef itself": typedef struct pExampleStructTypdef {...
  • User Stack Pointer Corruption with Double Precision Arithmetic
    When using C167 simulation and double precision arithmetic, I ran into a problem. Things didn't seem to be working properly, so I inspected the generated assembly and found that the user stack pointer...
  • User Stack Pointer Corruption with Double Precision Arithmetic
    When using C167 simulation and double precision arithmetic, I ran into a problem. Things didn't seem to be working properly, so I inspected the generated assembly and found that the user stack pointer...
  • adding reentrant to typedef function pointers causes redefinition in code
    I am porting some code to an 8051. (header.h) typedef int (Writer) (int , u_char * , u_char , size_t , u_char * , int *) reentrant; (source.h) Writer bob; (source.c) . . . int bob...