Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bonifaido committed Mar 6, 2024
1 parent cb8b51e commit 383df64
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions jwt.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@

#include "jwt.h"

typedef struct jwt {
char *alg;
char *typ;
typedef struct jwt
{
char *alg;
char *typ;

char *iss;
char *sub;
char *aud;
u64 exp;
char *iss;
char *sub;
char *aud;
u64 exp;

} jwt_t;

Expand Down

0 comments on commit 383df64

Please sign in to comment.