10 lines
171 B
C
10 lines
171 B
C
#ifndef PRACTICE_H
|
|
#define PRACTICE_H
|
|
|
|
#include "../../utils/lists.h"
|
|
|
|
int is_palindrome(struct dlist *l);
|
|
struct list *reverse(struct list *l);
|
|
|
|
#endif /* !PRACTICE_H */
|