13 lines
315 B
C
13 lines
315 B
C
|
#ifndef __DLUTILS_H
|
||
|
#define __DLUTILS_H
|
||
|
|
||
|
#ifndef __STRINGS_H
|
||
|
#include <strings.h>
|
||
|
#endif
|
||
|
|
||
|
void split_url(const TString& url, TString& site, TString& service);
|
||
|
void cifratura_laziale(const TString& usr, const TString& pwd, TString& key);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|