Prototype client_get_suggestions_xml in header
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 2 Jun 2015 13:41:16 +0000 (15:41 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 2 Jun 2015 13:41:16 +0000 (15:41 +0200)
src/client.c
src/client.h
src/session.c

index e5d3e4c..63be8d4 100644 (file)
@@ -1742,7 +1742,7 @@ int client_get_diagnostic(struct client *cl, const char **message,
     return cl->diagnostic;
 }
 
-const char * client_get_suggestions_xml(struct client *cl, WRBUF wrbuf)
+const char *client_get_suggestions_xml(struct client *cl, WRBUF wrbuf)
 {
     /* int idx; */
     struct suggestions *suggestions = cl->suggestions;
@@ -1771,7 +1771,6 @@ const char * client_get_suggestions_xml(struct client *cl, WRBUF wrbuf)
     return wrbuf_cstr(wrbuf);
 }
 
-
 void client_set_database(struct client *cl, struct session_database *db)
 {
     cl->database = db;
index e124ac4..8b427a7 100644 (file)
@@ -110,6 +110,8 @@ const char *client_get_facet_limit_local(struct client *cl,
                                          int *l,
                                          NMEM nmem, int *num, char ***values);
 
+const char *client_get_suggestions_xml(struct client *cl, WRBUF wrbuf);
+
 void client_update_show_stat(struct client *cl, int cmd);
 
 void client_store_xdoc(struct client *cl, int record_no, xmlDoc *xdoc);
index 3dcf40f..a94dc9f 100644 (file)
@@ -1049,8 +1049,6 @@ struct session *new_session(NMEM nmem, struct conf_service *service,
     return session;
 }
 
-const char * client_get_suggestions_xml(struct client *cl, WRBUF wrbuf);
-
 static struct hitsbytarget *hitsbytarget_nb(struct session *se,
                                             int *count, NMEM nmem)
 {