From: Payton Byrd (kingdurin_at_yahoo.com)
Date: 2003-12-31 22:25:30
PStringList is a typedef for struct StringList* So, would that mean the parameter you said to use is actualy a pointer to a pointer? --- Johan Kotlinski <johan_at_littlesounddj.com> wrote: > Hi Payton! > > > I'm writing a linked list library for myself and > am > > having problem retrieving the strings from the > nodes. > > What you have to do is to use call by reference > instead of call by value for some of your functions. > > NewList and NewNode should be defined like this: > > LIST_RESULT NewList (PStringList *p_List); > LIST_RESULT NewNode (STRING p_strKey, STRING > p_strValue, PStringNode *p_NewNode); > > ...and updated inside the function with *p_List = > NewList; > > There are other small problems with your code, but > I'm sure you can iron them out. > > Happy new year, > Johan > ---------------------------------------------------------------------- > To unsubscribe from the list send mail to > majordomo_at_musoftware.de with > the string "unsubscribe cc65" in the body(!) of the mail. __________________________________ Do you Yahoo!? Find out what made the Top Yahoo! Searches of 2003 http://search.yahoo.com/top2003 ---------------------------------------------------------------------- To unsubscribe from the list send mail to majordomo_at_musoftware.de with the string "unsubscribe cc65" in the body(!) of the mail.
This archive was generated by hypermail 2.1.3 : 2003-12-31 22:25:46 CET