1 #ifndef CLIENT_EXPORT_H
2 #define CLIENT_EXPORT_H
3 
4 struct client;
5 
6 int client_export(struct client *client, const char *const *args,
7 		  const char **error_r);
8 
9 #endif
10