uscanf.h 968 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. ******************************************************************************
  5. *
  6. * Copyright (C) 1998-2014, International Business Machines
  7. * Corporation and others. All Rights Reserved.
  8. *
  9. ******************************************************************************
  10. *
  11. * File uscanf.h
  12. *
  13. * Modification History:
  14. *
  15. * Date Name Description
  16. * 12/02/98 stephen Creation.
  17. * 03/13/99 stephen Modified for new C API.
  18. ******************************************************************************
  19. */
  20. #ifndef USCANF_H
  21. #define USCANF_H
  22. #include "unicode/utypes.h"
  23. #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
  24. #include "unicode/ustdio.h"
  25. U_CFUNC int32_t
  26. u_scanf_parse(UFILE *f,
  27. const UChar *patternSpecification,
  28. va_list ap);
  29. #endif /* #if !UCONFIG_NO_FORMATTING */
  30. #endif