X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilcstrutil.h;h=bc692975259bc59632b126fa4b7556d720482ea8;hb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;hp=26defd31f4ac68b05f905ba9d720ed90d0bb29fe;hpb=cfb37cd15f7218cce06dc9fb77428623aa29f3a4;p=silc.git diff --git a/lib/silcutil/silcstrutil.h b/lib/silcutil/silcstrutil.h index 26defd31..bc692975 100644 --- a/lib/silcutil/silcstrutil.h +++ b/lib/silcutil/silcstrutil.h @@ -67,50 +67,6 @@ typedef enum { } SilcStringEncoding; /***/ -/****f* silcutil/SilcStrUtilAPI/silc_pem_encode - * - * SYNOPSIS - * - * char *silc_pem_encode(unsigned char *data, SilcUInt32 len); - * - * DESCRIPTION - * - * Encodes data into PEM encoding. Returns NULL terminated PEM encoded - * data string. Note: This is originally public domain code and is - * still PD. - * - ***/ -char *silc_pem_encode(unsigned char *data, SilcUInt32 len); - -/****f* silcutil/SilcStrUtilAPI/silc_pem_encode_file - * - * SYNOPSIS - * - * char *silc_pem_encode_file(unsigned char *data, SilcUInt32 data_len); - * - * DESCRIPTION - * - * Same as silc_pem_encode() but puts newline ('\n') every 72 characters. - * - ***/ -char *silc_pem_encode_file(unsigned char *data, SilcUInt32 data_len); - -/****f* silcutil/SilcStrUtilAPI/silc_pem_decode - * - * SYNOPSIS - * - * unsigned char *silc_pem_decode(unsigned char *pem, SilcUInt32 pem_len, - * SilcUInt32 *ret_len); - * - * DESCRIPTION - * - * Decodes PEM into data. Returns the decoded data. Note: This is - * originally public domain code and is still PD. - * - ***/ -unsigned char *silc_pem_decode(unsigned char *pem, SilcUInt32 pem_len, - SilcUInt32 *ret_len); - /****f* silcutil/SilcStrStrUtilAPI/silc_strncat * * SYNOPSIS @@ -140,26 +96,9 @@ char *silc_strncat(char *dest, SilcUInt32 dest_size, * be used by the GNU regex library. A comma (`,') in the `string' means * that the string is list. * - * This function is system dependant. - * ***/ char *silc_string_regexify(const char *string); -/****f* silcutil/SilcStrUtilAPI/silc_string_regex_match - * - * SYNOPSIS - * - * int silc_string_regex_match(const char *regex, const char *string); - * - * DESCRIPTION - * - * Matches the two strings and returns TRUE if the strings match. - * - * This function is system dependant. - * - ***/ -int silc_string_regex_match(const char *regex, const char *string); - /****f* silcutil/SilcStrUtilAPI/silc_string_match * * SYNOPSIS @@ -171,8 +110,6 @@ int silc_string_regex_match(const char *regex, const char *string); * Do regex match to the two strings `string1' and `string2'. If the * `string2' matches the `string1' this returns TRUE. * - * This function is system dependant. - * ***/ int silc_string_match(const char *string1, const char *string2);