gooderp18绿色标准版
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
491B

  1. /*
  2. * base64.h
  3. * Encoding and decoding routines for base64 without whitespace
  4. * support.
  5. *
  6. * Portions Copyright (c) 2001-2019, PostgreSQL Global Development Group
  7. *
  8. * src/include/common/base64.h
  9. */
  10. #ifndef BASE64_H
  11. #define BASE64_H
  12. /* base 64 */
  13. extern int pg_b64_encode(const char *src, int len, char *dst);
  14. extern int pg_b64_decode(const char *src, int len, char *dst);
  15. extern int pg_b64_enc_len(int srclen);
  16. extern int pg_b64_dec_len(int srclen);
  17. #endif /* BASE64_H */
上海开阖软件有限公司 沪ICP备12045867号-1