Blame gnulib-tests/test-snprintf.c

Packit 709fb3
/* Test of snprintf() function.
Packit 709fb3
   Copyright (C) 2007-2017 Free Software Foundation, Inc.
Packit 709fb3
Packit 709fb3
   This program is free software: you can redistribute it and/or modify
Packit 709fb3
   it under the terms of the GNU General Public License as published by
Packit 709fb3
   the Free Software Foundation; either version 3 of the License, or
Packit 709fb3
   (at your option) any later version.
Packit 709fb3
Packit 709fb3
   This program is distributed in the hope that it will be useful,
Packit 709fb3
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 709fb3
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 709fb3
   GNU General Public License for more details.
Packit 709fb3
Packit 709fb3
   You should have received a copy of the GNU General Public License
Packit 709fb3
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 709fb3
Packit 709fb3
/* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
Packit 709fb3
Packit 709fb3
#include <config.h>
Packit 709fb3
Packit 709fb3
#include <stdio.h>
Packit 709fb3
Packit 709fb3
#include "signature.h"
Packit 709fb3
SIGNATURE_CHECK (snprintf, int, (char *, size_t, char const *, ...));
Packit 709fb3
Packit 709fb3
#include <string.h>
Packit 709fb3
Packit 709fb3
#include "macros.h"
Packit 709fb3
Packit 709fb3
int
Packit 709fb3
main (int argc, char *argv[])
Packit 709fb3
{
Packit 709fb3
  char buf[8];
Packit 709fb3
  int size;
Packit 709fb3
  int retval;
Packit 709fb3
Packit 709fb3
  retval = snprintf (NULL, 0, "%d", 12345);
Packit 709fb3
  ASSERT (retval == 5);
Packit 709fb3
Packit 709fb3
  for (size = 0; size <= 8; size++)
Packit 709fb3
    {
Packit 709fb3
      memcpy (buf, "DEADBEEF", 8);
Packit 709fb3
      retval = snprintf (buf, size, "%d", 12345);
Packit 709fb3
      ASSERT (retval == 5);
Packit 709fb3
      if (size < 6)
Packit 709fb3
        {
Packit 709fb3
          if (size > 0)
Packit 709fb3
            {
Packit 709fb3
              ASSERT (memcmp (buf, "12345", size - 1) == 0);
Packit 709fb3
              ASSERT (buf[size - 1] == '\0' || buf[size - 1] == '0' + size);
Packit 709fb3
            }
Packit 709fb3
#if !CHECK_SNPRINTF_POSIX
Packit 709fb3
          if (size > 0)
Packit 709fb3
#endif
Packit 709fb3
            ASSERT (memcmp (buf + size, &"DEADBEEF"[size], 8 - size) == 0);
Packit 709fb3
        }
Packit 709fb3
      else
Packit 709fb3
        {
Packit 709fb3
          ASSERT (memcmp (buf, "12345\0EF", 8) == 0);
Packit 709fb3
        }
Packit 709fb3
    }
Packit 709fb3
Packit 709fb3
  /* Test the support of the POSIX/XSI format strings with positions.  */
Packit 709fb3
  {
Packit 709fb3
    char result[100];
Packit 709fb3
    retval = snprintf (result, sizeof (result), "%2$d %1$d", 33, 55);
Packit 709fb3
    ASSERT (strcmp (result, "55 33") == 0);
Packit 709fb3
    ASSERT (retval == strlen (result));
Packit 709fb3
  }
Packit 709fb3
Packit 709fb3
  return 0;
Packit 709fb3
}