\r\n

51Degrees Device Detection C/C++  4.2Newer Version 4.4

A device detection library that is used natively or by 51Degrees products

textfile.h

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2019 51 Degrees Mobile Experts Limited, 5 Charlotte Close,
4  * Caversham, Reading, Berkshire, United Kingdom RG4 7BY.
5  *
6  * This Original Work is licensed under the European Union Public Licence (EUPL)
7  * v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_TEXT_FILE_H_INCLUDED
24 #define FIFTYONE_DEGREES_TEXT_FILE_H_INCLUDED
25 
37 #include <stdio.h>
38 #include <ctype.h>
39 #include "file.h"
40 
41 #ifdef __cplusplus
42 #define EXTERNAL extern "C"
43 #else
44 #define EXTERNAL
45 #endif
46 
59  const char *fileName,
60  char *buffer,
61  int length,
62  int limit,
63  void *state,
64  void(*callback)(const char*, void*));
65 
76 EXTERNAL void fiftyoneDegreesTextFileIterate(
77  const char *fileName,
78  char *buffer,
79  int length,
80  void *state,
81  void(*callback)(const char*, void*));
82 
87 #endif
void fiftyoneDegreesTextFileIterate(const char *fileName, char *buffer, int length, void *state, void(*callback)(const char *, void *))
Iterates over all the lines in a text file calling the callback method with each line.
void fiftyoneDegreesTextFileIterateWithLimit(const char *fileName, char *buffer, int length, int limit, void *state, void(*callback)(const char *, void *))
Iterates over all the lines in a text file up to the given limit number of line to read,...