27 lines
792 B
C
27 lines
792 B
C
|
// Copyright (c) 2005-2008 ASCLEPIOS Project, INRIA Sophia-Antipolis (France)
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This file is part of the ImageIO Library, and as been adapted for CGAL (www.cgal.org).
|
||
|
//
|
||
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/CGAL_ImageIO/include/CGAL/ImageIO/fgetns.h $
|
||
|
// $Id: fgetns.h 07c4ada 2019-10-19T15:50:09+02:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
//
|
||
|
//
|
||
|
// Author(s) : ASCLEPIOS Project (INRIA Sophia-Antipolis), Laurent Rineau
|
||
|
|
||
|
#ifndef FGETNS_H
|
||
|
#define FGETNS_H
|
||
|
|
||
|
#include <CGAL/ImageIO.h>
|
||
|
|
||
|
/* get a string from a file and discard the ending newline character
|
||
|
if any */
|
||
|
char *fgetns(char *str, int n, _image *im );
|
||
|
|
||
|
#ifdef CGAL_HEADER_ONLY
|
||
|
#include <CGAL/ImageIO/fgetns_impl.h>
|
||
|
#endif // CGAL_HEADER_ONLY
|
||
|
|
||
|
#endif // FGETNS_H
|