Macaulay2 Engine
Loading...
Searching...
No Matches

◆ put() [7/19]

void buffer::put ( double n)

Definition at line 60 of file buffer.cpp.

61{
62 const int N = 100;
63 char s[N];
64 snprintf(s, N, "%g", n);
65 put(s, strlen(s));
66}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.