str.c revision 38499bb33c74acc6d725204e893cfc02a5890ec7
/*
Copyright (c) 2002 Timo Sirainen
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "lib.h"
#include "buffer.h"
#include "printf-upper-bound.h"
#include "str.h"
#include <stdio.h>
{
}
{
}
{
}
{
/* no space - doesn't happen with our dynamically growing
strings though, but make sure it's \0 terminated. */
if (len == 0)
return FALSE;
len--;
i_panic("BUG in str_c()");
}
/* remove the \0 - we don't want to keep it */
return TRUE;
}
{
if (!str_add_nul(str))
return "";
}
{
}
{
if (!str_add_nul(str))
return NULL;
}
{
return buffer_get_used_size(str);
}
{
}
{
len = 0;
len++;
}
{
}
{
const char *cstr;
}
{
}
{
char *buf;
int ret;
#ifdef HAVE_VSNPRINTF
#else
#endif
}
{
}
{
}