My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

getline.h 280B

123456789101112
  1. #ifndef MYGETLINE_H
  2. #define MYGETLINE_H
  3. //#include "config.h"
  4. #if !HAVE_GETLINE
  5. #include <stdio.h>
  6. ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp);
  7. #define getline(lineptr, n, stream) getdelim (lineptr, n, '\n', stream)
  8. #endif
  9. #endif // MYGETLINE_H