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

◆ put() [18/19]

void buffer::put ( unsigned long n)

Definition at line 84 of file buffer.cpp.

85{
86 const int N = 100;
87 char s[N];
88 snprintf(s, N, "%lu", n);
89 put(s, strlen(s));
90}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.