home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.amiga.programmer
- Path: sparky!uunet!usc!rpi!gatech!enterpoop.mit.edu!thunder.mcrcim.mcgill.edu!sifon!charnel!psgrain!m2xenix!agora!robart
- From: robart@agora.rain.com (Joe Bob)
- Subject: Re: AmigaDOS library functions and ANSI-C programming
- Message-ID: <C03uy8.9xF@agora.rain.com>
- Organization: a gora
- References: <1992Dec29.221144.26405@urbana.mcd.mot.com> <1hrqupINNipe@aurora.unice.fr>
- Date: Thu, 31 Dec 1992 03:56:31 GMT
- Lines: 13
-
- In article <1hrqupINNipe@aurora.unice.fr> beust@aurora.unice.fr (Cedric Beust) writes:
- >
- > I was reading the autodoc for AddHead which looks like
- > AddHead(struct List *list, struct Node *node)
- > and I was wondering if a copy of the node would be done and then
- > pointed to in the list or if *my* node would be directly referenced.
-
-
- AddHead has to modify your node in order to add it to the list.
- And it can't in general use a copy of the node since it does't
- know how big it is. The node could be a Task, a Message, an IORequest,
- a Font, or just about anything.
-
-