My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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