init
This commit is contained in:
commit
29da8777e6
9 changed files with 582 additions and 0 deletions
30
trq/trq.h
Normal file
30
trq/trq.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* trq.h
|
||||
*
|
||||
* Created on: 17 авг. 2022 г.
|
||||
* Author: Alexander Zhirov
|
||||
* Mail: alexander@zhirov.website
|
||||
* Telegram: alexanderzhirov
|
||||
*/
|
||||
|
||||
#ifndef TRQ_H_
|
||||
#define TRQ_H_
|
||||
|
||||
#define TRQ 06 /* Thinstation */
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int size;
|
||||
char *command;
|
||||
char *file_src;
|
||||
char *file_dst;
|
||||
char *path_src;
|
||||
char *path_dst;
|
||||
} ts_args;
|
||||
|
||||
ts_args* ts_get_arguments(const char*, const char*);
|
||||
void ts_free(ts_args*);
|
||||
void ts_syslog(const ts_args*);
|
||||
void ts_symlink(const ts_args*);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue