Blame libio/strfile.h

Packit 6c4009
/* Copyright (C) 1993-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.
Packit 6c4009
Packit 6c4009
   As a special exception, if you link the code in this file with
Packit 6c4009
   files compiled with a GNU compiler to produce an executable,
Packit 6c4009
   that does not cause the resulting executable to be covered by
Packit 6c4009
   the GNU Lesser General Public License.  This exception does not
Packit 6c4009
   however invalidate any other reasons why the executable file
Packit 6c4009
   might be covered by the GNU Lesser General Public License.
Packit 6c4009
   This exception applies to code released by its copyright holders
Packit 6c4009
   in files containing the exception.  */
Packit 6c4009
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include "libioP.h"
Packit 6c4009
Packit 6c4009
typedef void *(*_IO_alloc_type) (size_t);
Packit 6c4009
typedef void (*_IO_free_type) (void*);
Packit 6c4009
Packit 6c4009
struct _IO_str_fields
Packit 6c4009
{
Packit 6c4009
  /* These members are preserved for ABI compatibility.  The glibc
Packit 6c4009
     implementation always calls malloc/free for user buffers if
Packit 6c4009
     _IO_USER_BUF or _IO_FLAGS2_USER_WBUF are not set.  */
Packit 6c4009
  _IO_alloc_type _allocate_buffer_unused;
Packit 6c4009
  _IO_free_type _free_buffer_unused;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
/* This is needed for the Irix6 N32 ABI, which has a 64 bit off_t type,
Packit 6c4009
   but a 32 bit pointer type.  In this case, we get 4 bytes of padding
Packit 6c4009
   after the vtable pointer.  Putting them in a structure together solves
Packit 6c4009
   this problem.  */
Packit 6c4009
Packit 6c4009
struct _IO_streambuf
Packit 6c4009
{
Packit 6c4009
  FILE _f;
Packit 6c4009
  const struct _IO_jump_t *vtable;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
typedef struct _IO_strfile_
Packit 6c4009
{
Packit 6c4009
  struct _IO_streambuf _sbf;
Packit 6c4009
  struct _IO_str_fields _s;
Packit 6c4009
} _IO_strfile;
Packit 6c4009
Packit 6c4009
/* frozen: set when the program has requested that the array object not
Packit 6c4009
   be altered, reallocated, or freed. */
Packit 6c4009
#define _IO_STR_FROZEN(FP) ((FP)->_f._flags & _IO_USER_BUF)
Packit 6c4009
Packit 6c4009
typedef struct
Packit 6c4009
{
Packit 6c4009
  _IO_strfile f;
Packit 6c4009
  /* This is used for the characters which do not fit in the buffer
Packit 6c4009
     provided by the user.  */
Packit 6c4009
  char overflow_buf[64];
Packit 6c4009
} _IO_strnfile;
Packit 6c4009
Packit 6c4009
extern const struct _IO_jump_t _IO_strn_jumps attribute_hidden;
Packit 6c4009
Packit 6c4009
Packit 6c4009
typedef struct
Packit 6c4009
{
Packit 6c4009
  _IO_strfile f;
Packit 6c4009
  /* This is used for the characters which do not fit in the buffer
Packit 6c4009
     provided by the user.  */
Packit 6c4009
  wchar_t overflow_buf[64];
Packit 6c4009
} _IO_wstrnfile;
Packit 6c4009
Packit 6c4009
extern const struct _IO_jump_t _IO_wstrn_jumps attribute_hidden;