/**************************************************************************** * libs/libc/obstack/lib_obstack_vprintf.c * * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * 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. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include /**************************************************************************** * Private Types ****************************************************************************/ struct obstack_stream { struct lib_outstream_s public; FAR struct obstack *h; }; /**************************************************************************** * Private Functions ****************************************************************************/ static int obstack_puts(FAR struct lib_outstream_s *this, FAR const void *buf, int len) { FAR struct obstack_stream *mthis = (FAR struct obstack_stream *)this; DEBUGASSERT(this); obstack_grow(mthis->h, buf, len); return len; } static void obstack_putc(FAR struct lib_outstream_s *this, int ch) { char tmp = ch; obstack_puts(this, &tmp, 1); } /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: obstack_vprintf * * Description: * This is similar to the vasprintf except it uses obstack to allocate * string on. The characters are written onto the end of the currently * growing object and terminated by null byte. * * The same remarks are applied here as for obstack_printf regarding the * definition location in GlibC. * * Input Parameters: * h: pointer to the handle used to grow the object. * fmt: format string * ap: format string input as a variable argument list * * Returned Value: * Number of characters added to the obstack excluding the null byte. * ****************************************************************************/ int obstack_vprintf(FAR struct obstack *h, FAR const char *fmt, va_list ap) { struct obstack_stream outstream; outstream.public.putc = obstack_putc; outstream.public.puts = obstack_puts; outstream.public.flush = lib_noflush; outstream.public.nput = 0; outstream.h = h; return lib_vsprintf(&outstream.public, fmt, ap); }