Blame view

Slist.h 315 Bytes
500d264d   bjeanlou   create tree ch Sl...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef SLIST_H
  #define SLIST_H
  
  #include "tree.h"
  
  typedef
    struct cell{
      node* letter;
      cell* next;}
  //defs
    cell, *List;
  
  
  //function
  List* make_empty_List();
  int is_empty(List);
2a10535a   bjeanlou   end Lesson 1
17
18
19
20
  int isIn_list(List,char);
  void addAlpha(List*,char);
  void addHead(List*,char);
  void addNext(List*,char);
500d264d   bjeanlou   create tree ch Sl...
21
22
23
24
  
  
  
  #endif //SLIST_H