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

16 行
280 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <errno.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include "../../util.h"
  6. const char *
  7. temp(const char *file)
  8. {
  9. int temp;
  10. return (pscanf(file, "%d", &temp) == 1) ?
  11. bprintf("%d", temp / 1000) : NULL;
  12. }