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

◆ put() [9/19]

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

Definition at line 44 of file buffer.cpp.

45{
46 const int N = 100;
47 char s[N];
48 snprintf(s, N, "%*d", width, n);
49 put(s, strlen(s));
50}
void put(const char *s)
Definition buffer.cpp:35
void size_t s
Definition m2-mem.cpp:271

References put(), and s.