FACT++  1.0
CharItem* createCharItem ( )

Definition at line 4009 of file feeserver.c.

References Memory::malloc().

Referenced by fillCharItem().

4009  {
4010  CharItem* charItem = 0;
4011 
4012  charItem = (CharItem*) malloc(sizeof(CharItem));
4013  if (charItem == 0) {
4014  //no memory available!
4015 # ifdef __DEBUG
4016  printf("no memory available for CharItem!\n");
4017 # endif
4018  return 0;
4019  }
4020  charItem->user_routine = 0;
4021  charItem->name = 0;
4022  charItem->tag = 0;
4023  return charItem;
4024 }
void * malloc()
Definition: EventBuilder.cc:99

+ Here is the call graph for this function:

+ Here is the caller graph for this function: