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

◆ put() [17/19]

void buffer::put ( unsigned long long n)

Definition at line 92 of file buffer.cpp.

93{
94 const int N = 100;
95 char s[N];
96 snprintf(s, N, "%llu", n);
97 put(s, strlen(s));
98}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.