summaryrefslogtreecommitdiff
path: root/src/libwebidoidc.c
blob: af26ae08074a4df890c9bee1377ff8e2f87c00b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define N_(s)
void init_webidoidc_base64 (void);
void init_webidoidc_random (void);

void
init_webidoidc (void)
{
  N_("This is the main function.");
  init_webidoidc_base64 ();
  init_webidoidc_random ();
}