My slstatus configuration
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

temperature.c 235 B

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