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

◆ put() [16/19]

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

Definition at line 100 of file buffer.cpp.

101{
102 const int N = 100;
103 char s[N];
104 snprintf(s, N, "%*u", width, n);
105 put(s, strlen(s));
106}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.