views:

85

answers:

1

Are there any open source C Library (not c++) for Windows Driver Development ?

I am developing a network device driver that need some functionality such as RegEx, string manipulation, Object Oriented by C and XML and so on...

thanks.

+1  A: 

Not aware of any real regular expression libraries. However, depending on what you need FsRtlIsNameInExpression may be of some interest. There's plenty of string manipulation functions in the Safe String Libraries, they just have names that are different to the libc equiavalents.

torak