> Hi > pardon me if the question is repeated.i understand that in general > standard library functions cannot be used with rtlinux.Does that mean we > cannot use functions from string.h (like > strcpy,strcmp,memcpy,memcmp)also.
many string functions are available (some are arch specific) in kernel space as independant implementation so : memcpy memset memmove memscan memcmp memchr strcpy strncpy strsep strcat strncat strcmp strncmp strchr strrchr strlen strstr strtok simple_strtol strpbrk sprintf strsep (anybody know where to find a *complete* list per arch ?) so not the entire set is available. you can with limitations, include libraries by statically linking them into i your module - see the examples/fp/Makefile for how to do that - but be aware of that this may have side effects as even simple functions may allocate dynamik resources. hofrat _______________________________________________ Rtl mailing list [EMAIL PROTECTED] http://www2.fsmlabs.com/mailman/listinfo.cgi/rtl