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

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