test
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#include "practice.h"
|
||||
|
||||
int is_palindrome(struct dlist *l)
|
||||
{
|
||||
//FIXME
|
||||
}
|
||||
|
||||
struct list *reverse(struct list *l)
|
||||
{
|
||||
//FIXME
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user