Navigation Menu

Skip to content

Commit

Permalink
Use all the obscure keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jun 16, 2019
1 parent 7895388 commit ce6984d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib/util/base64.h
Expand Up @@ -46,8 +46,8 @@ extern char const fr_base64_sextet[];

bool fr_is_base64(char c);

size_t fr_base64_encode(char *out, size_t outlen, uint8_t const *in, size_t inlen);
ssize_t fr_base64_decode(uint8_t *out, size_t outlen, char const *in, size_t inlen);
size_t fr_base64_encode(char * restrict out, size_t outlen, uint8_t const * restrict in, size_t inlen);
ssize_t fr_base64_decode(uint8_t * restrict out, size_t outlen, char const * restrict in, size_t inlen);

#ifdef __cplusplus
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/util/misc.h
Expand Up @@ -149,7 +149,7 @@ int rad_lockfd(int fd, int lock_len);
int rad_lockfd_nonblock(int fd, int lock_len);
int rad_unlockfd(int fd, int lock_len);
char *fr_abin2hex(TALLOC_CTX *ctx, uint8_t const *bin, size_t inlen);
size_t fr_bin2hex(char *hex, uint8_t const *bin, size_t inlen);
size_t fr_bin2hex(char * restrict hex, uint8_t const * restrict bin, size_t inlen);
size_t fr_hex2bin(uint8_t *bin, size_t outlen, char const *hex, size_t inlen);
int fr_strtoull(uint64_t *out, char **end, char const *value);
int fr_strtoll(int64_t *out, char **end, char const *value);
Expand Down

0 comments on commit ce6984d

Please sign in to comment.