Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91450796
std.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 11, 06:10
Size
357 B
Mime Type
text/x-c
Expires
Wed, Nov 13, 06:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22262660
Attached To
R6289 Motion correction paper
std.cpp
View Options
#include "std.h"
#include <stdarg.h>
#include "stdio.h"
void std_printf(const char* format, ... ) {
va_list arglist;
va_start( arglist, format );
vprintf( format, arglist );
va_end(arglist);
}
void err_printf(const char* format, ... ) {
va_list arglist;
va_start( arglist, format );
vfprintf( stderr, format, arglist );
va_end(arglist);
}
Event Timeline
Log In to Comment