class List {
  private:
  struct node {
    	char *value;
	node *next;
  };
  node *head;
  node *z;
  public:
    List();
    ~List();
    void insert(char *value);
    int search(char *value);
    char *get(int i);
    void output();
};



syntax highlighted by Code2HTML, v. 0.9.1