/usr/include/tclutil/base64.h is in skycat 3.1.2+starlink1~b+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /*
* E.S.O. - VLT project/ESO Archive
* $Id: base64.h,v 1.1.1.1 2009/03/31 14:11:52 cguirao Exp $
*
* base64.h - declarations for base64 encoding and decoding
* utility routines.
*
* who when what
* -------------- -------- ----------------------------------------
* Allan Brighton Jul 15 Created
*/
char *encode_base64(char *input);
char *decode_base64(char *input);
|