forked from mirrors/treebird
f1a407c79f
FossilOrigin-Name: 6ca19819ff1547744a39e4d248a7803bf6dfd8f20ae64e704f044200746acaf1
12 lines
714 B
Text
12 lines
714 B
Text
#ifndef __account_info
|
|
#define __account_info
|
|
static const char data_account_info[] = {0X3C,0X64,0X69,0X76,0X20,0X63,0X6C,0X61,0X73,0X73,0X3D,0X22,0X61,0X63,0X63,0X6F,0X75,0X6E,0X74,0X2D,0X69,0X6E,0X66,0X6F,0X22,0X3E,0XA,0X20,0X20,0X3C,0X64,0X69,0X76,0X20,0X63,0X6C,0X61,0X73,0X73,0X3D,0X22,0X61,0X63,0X63,0X6F,0X75,0X6E,0X74,0X2D,0X6E,0X6F,0X74,0X65,0X22,0X3E,0X25,0X73,0X3C,0X2F,0X64,0X69,0X76,0X3E,0XA,0X3C,0X2F,0X64,0X69,0X76,0X3E,0};
|
|
struct account_info_template {const char* acct_note;
|
|
};
|
|
char* tmpl_gen_account_info(struct account_info_template* data, unsigned* size){
|
|
char* ret;
|
|
unsigned s = easprintf(&ret, data_account_info, data->acct_note?data->acct_note:"");
|
|
if (size) *size = s;
|
|
return ret;
|
|
}
|
|
#endif
|