選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
149 B

  1. #include "Buffer.h"
  2. #include "string.h"
  3. namespace buffer {
  4. char value[BUFFER_SIZE];
  5. void clear() { memset(buffer::value, NULL, BUFFER_SIZE); }
  6. }