sscanf_s.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) Huawei Technologies Co., Ltd. 2014-2021. All rights reserved.
  3. * Licensed under Mulan PSL v2.
  4. * You can use this software according to the terms and conditions of the Mulan PSL v2.
  5. * You may obtain a copy of Mulan PSL v2 at:
  6. * http://license.coscl.org.cn/MulanPSL2
  7. * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
  8. * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
  9. * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
  10. * See the Mulan PSL v2 for more details.
  11. * Description: sscanf_s function
  12. * Create: 2014-02-25
  13. */
  14. #include "securec.h"
  15. /*
  16. * <FUNCTION DESCRIPTION>
  17. * The sscanf_s function is equivalent to fscanf_s,
  18. * except that input is obtained from a string (specified by the argument buffer) rather than from a stream
  19. * The sscanf function reads data from buffer into the location given by each
  20. * argument. Every argument must be a pointer to a variable with a type that
  21. * corresponds to a type specifier in format. The format argument controls the
  22. * interpretation of the input fields and has the same form and function as
  23. * the format argument for the scanf function.
  24. * If copying takes place between strings that overlap, the behavior is undefined.
  25. *
  26. * <INPUT PARAMETERS>
  27. * buffer Stored data.
  28. * format Format control string, see Format Specifications.
  29. * ... Optional arguments.
  30. *
  31. * <OUTPUT PARAMETERS>
  32. * ... The converted value stored in user assigned address
  33. *
  34. * <RETURN VALUE>
  35. * Each of these functions returns the number of fields successfully converted
  36. * and assigned; the return value does not include fields that were read but
  37. * not assigned.
  38. * A return value of 0 indicates that no fields were assigned.
  39. * return -1 if an error occurs.
  40. */
  41. int sscanf_s(const char *buffer, const char *format, ...)
  42. {
  43. int ret; /* If initialization causes e838 */
  44. va_list argList;
  45. va_start(argList, format);
  46. ret = vsscanf_s(buffer, format, argList);
  47. va_end(argList);
  48. (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */
  49. return ret;
  50. }
  51. #if SECUREC_EXPORT_KERNEL_SYMBOL
  52. EXPORT_SYMBOL(sscanf_s);
  53. #endif