• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (C) 2017 The Android Open Source Project
2 // SPDX-License-Identifier: BSD-2-Clause
3 
4 #include <iconv.h>
5 
6 #include "header_checks.h"
7 
iconv_h()8 static void iconv_h() {
9   TYPE(iconv_t);
10   TYPE(size_t);
11 
12   FUNCTION(iconv, size_t (*f)(iconv_t, char**, size_t*, char**, size_t*));
13   FUNCTION(iconv_close, int (*f)(iconv_t));
14   FUNCTION(iconv_open, iconv_t (*f)(const char*, const char*));
15 }
16