aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/client.h
blob: 0d97a29194f7d56dfe9e81f58a86c2c629e6f135 (plain) (tree)
1
2
3
4
5
6
7
  
                                                    




                                                          







                         
              
 
                                    
                                     
 
                                                                                             

      
/*
 * Copyright (c) 2022 Egor Tensin <egor@tensin.name>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __CLIENT_H__
#define __CLIENT_H__

struct settings {
	const char *host;
	const char *port;
};

struct client;

int client_create(struct client **);
void client_destroy(struct client *);

int client_main(const struct client *, const struct settings *, int argc, const char **argv);

#endif