* xmlListFront: * @l: a list * * Get the first element in the list * * Returns the first element in the list, or NULL */
| 448 | * Returns the first element in the list, or NULL |
| 449 | */ |
| 450 | xmlLinkPtr |
| 451 | xmlListFront(xmlListPtr l) |
| 452 | { |
| 453 | if (l == NULL) |
| 454 | return(NULL); |
| 455 | return (l->sentinel->next); |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * xmlListEnd: |
no outgoing calls
no test coverage detected