append lf to includes

This commit is contained in:
2023-11-29 13:40:41 -08:00
parent 57cf229904
commit bc8e01fd6f
19 changed files with 109 additions and 18 deletions

View File

@ -2,12 +2,12 @@
#include <stdlib.h>
#include <assert.h>
#include "linkedlist.h"
#include "set.h"
#include "stack.h"
#include "binarytree.h"
#include "vector.h"
#include "math.h"
#include "lflinkedlist.h"
#include "lfset.h"
#include "lfstack.h"
#include "lfbinarytree.h"
#include "lfvector.h"
#include "lfmath.h"
void print_ll(List *list) {
LL_ITER(list) {