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

◆ put() [11/19]

void buffer::put ( long n,
int width )

Definition at line 68 of file buffer.cpp.

69{
70 const int N = 100;
71 char s[N];
72 snprintf(s, N, "%*ld", width, n);
73 put(s, strlen(s));
74}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.