summaryrefslogtreecommitdiff
path: root/src/libwebidoidc.c
blob: 1c637e5cd6d4066fb8afe48142e2225dcc7bc21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#define N_(s)
void init_webidoidc_base64 (void);
void init_webidoidc_random (void);
void init_webidoidc_jwk (void);
void init_webidoidc_hash (void);
void init_webidoidc_jws (void);

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