• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / Spin_Project2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Spin_Project2
  • code
  • custom
  • darknet
  • src
  • list.h
  • 김동근's avatar
    final · 1be276a1
    1be276a1
    김동근 authored 2020-06-21 20:39:57 +0900
list.h 185 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef LIST_H
#define LIST_H
#include "darknet.h"

list *make_list();
int list_find(list *l, void *val);

void list_insert(list *, void *);


void free_list_contents(list *l);

#endif