Introduction
Introduction Statistics Contact Development Disclaimer Help
duckduckgo.h - frontends - front-ends for some sites (experiment)
Log
Files
Refs
README
LICENSE
---
duckduckgo.h (296B)
---
1 struct duckduckgo_result {
2 char title[1024];
3 char url[1024];
4 char urldecoded[1024];
5 char description[4096];
6 };
7
8 #define MAX_ITEMS 100
9
10 struct duckduckgo_results {
11 struct duckduckgo_result items[MAX_ITEMS + 1];
12 size_t nitems;
13 };
14
15 struct duckduckgo_results *duckduckgo_search(const char *s);
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.