HTMLify

search.h
Views: 11 | Author: abh
#ifndef SEARCH_H
#define SEARCH_H

typedef struct {
    char **results;
    int result_count;
} SearchResult;

SearchResult search(const char *, const char *, void (*)(int, int, int, char*));

#endif

Comments