#include #include int main (void) { const gnutls_cipher_algorithm_t *gciphers = gnutls_cipher_list (); for (int pos = 0; gciphers[pos] != 0; pos++) { gnutls_cipher_algorithm_t gca = gciphers[pos]; if (gca == GNUTLS_CIPHER_UNKNOWN) return printf ("gciphers[%d] == GNUTLS_CIPHER_UNKNOWN ?!?\n", pos), 1; } return 0; }