1

In a .pyx Cython file, I am trying to import several C functions as below:

from libc.stdlib cimport atof

from libc.string cimport strlen, strsep

I get an error:

error LNK2001: unresolved external symbol strsep

I have been trying to web search and understand what is going on here, but I can't figure it out. Is strsep available?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
jbiz
  • 43
  • 5
  • See this answer specifically: https://stackoverflow.com/a/7219504/4657412 - `strsep` is non-standard and probably not available on Windows, so you just can't use it on Windows – DavidW Aug 16 '23 at 16:47

0 Answers0