-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathBufferReader.h
52 lines (41 loc) · 1.4 KB
/
BufferReader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2013-4-6
* Update : 2019-19
* Author : scott.cgi
*/
#ifndef BUFFER_READER_H
#define BUFFER_READER_H
#include <stdbool.h>
#include <stdint.h>
#include "Engine/Toolkit/HeaderUtils/ArrayRange.h"
/**
* Read different types of data from buffer.
*/
struct ABufferReader
{
/**
* Read line from range in buffer, move range->start to newline, and record line in outLine.
* the outLine->end may be '\n' or '\r' or range->end (not found newline char).
*/
void (*ReadLine) (const char* buffer, ArrayRange* range, ArrayRange* outLine);
/**
* Find str from range in buffer.
*
* if return true
* found the str and move range->start behind str in buffer, but not more than range->end.
* else
* not found str and keep range->start.
*/
bool (*TryFindString)(const char* buffer, ArrayRange* range, const char* str);
};
extern struct ABufferReader ABufferReader[1];
#endif