FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
daScript/src/misc/string_writer.cpp at master · rburkholder/daScript · GitHub
rburkholder
/
daScript
Public
forked from
GaijinEntertainment/daScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
daScript
/
src
/
misc
/
string_writer.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 534 Bytes
Breadcrumbs
daScript
/
src
/
misc
/
string_writer.cpp
Copy path
File metadata and controls
23 lines (19 loc) · 534 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
include
"
daScript/misc/platform.h
"
#
include
"
daScript/misc/string_writer.h
"
namespace
das
{
StringWriterTag
HEX
;
StringWriterTag
DEC
;
StringWriterTag
FIXEDFP
;
StringWriterTag
SCIENTIFIC
;
mutex TextPrinter::pmut;
void
TextPrinter::output
() {
lock_guard<mutex>
guard
(pmut);
int
newPos =
tellp
();
if
(newPos != pos) {
string
st
(data.
data
() + pos, newPos - pos);
printf
(
"
%s
"
, st.
c_str
());
fflush
(stdout);
pos = newPos;
}
}
}
Back
|
FazBrowse Home
|
New Git URL