15 lines
306 B
C
15 lines
306 B
C
|
#include "browse.h"
|
||
|
|
||
|
int main() {
|
||
|
char *query = "example";
|
||
|
char *result = get_news(query);
|
||
|
|
||
|
if (result) {
|
||
|
printf("Result: %s\n", result);
|
||
|
free(result); // Free the allocated memory for the result
|
||
|
} else {
|
||
|
printf("Failed to fetch news.\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|