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

◆ put() [19/19]

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

Definition at line 108 of file buffer.cpp.

109{
110 const int N = 100;
111 char s[N];
112 snprintf(s, N, "%*lu", width, n);
113 put(s, strlen(s));
114}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.