2012-11-10 17:06:01 +01:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* libs/libc/stdio/lib_vsscanf.c
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-16 01:01:39 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2012-11-10 17:06:01 +01:00
|
|
|
#include <stdio.h>
|
2019-02-16 01:01:39 +01:00
|
|
|
|
|
|
|
#include <nuttx/streams.h>
|
|
|
|
|
2015-12-30 00:31:17 +01:00
|
|
|
#include "libc.h"
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-16 01:26:06 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: vsscanf
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-06-02 17:28:28 +02:00
|
|
|
int vsscanf(FAR const char *buf, FAR const IPTR char *fmt, va_list ap)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2019-02-16 01:01:39 +01:00
|
|
|
struct lib_meminstream_s meminstream;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
/* Initialize a memory stream to freadm from the buffer */
|
|
|
|
|
|
|
|
lib_meminstream((FAR struct lib_meminstream_s *)&meminstream, buf,
|
|
|
|
LIB_BUFLEN_UNKNOWN);
|
|
|
|
|
|
|
|
/* Then let lib_vscanf do the real work */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2019-02-16 01:01:39 +01:00
|
|
|
n = lib_vscanf((FAR struct lib_instream_s *)&meminstream.public, NULL,
|
|
|
|
fmt, ap);
|
2012-11-10 17:06:01 +01:00
|
|
|
return n;
|
|
|
|
}
|