Guest User

Untitled

a guest
Oct 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. TipoApontador find (TipoItem x, TipoLista *lista){
  2. TipoApontador aux;
  3. if (lista->primeiro != NULL){
  4. aux = lista->primeiro;
  5. while (aux!=NULL){
  6. if (aux->item == x)
  7. return aux;
  8. aux = aux->prox;
  9. }
  10. }
  11. return NULL;
  12. }
Add Comment
Please, Sign In to add comment