Jeremy Archer
Jeremy Archer
Hello there! This looks like a great library, but I'm worried by the lack of a license. It shouldn't matter what license you choose, just so long as its there....
Following up on Andrew's comment on #10. Russell, stylistic preferences between `etree` and `encoding/xml`? (I too like keeping with the stdlib, but it's not my library.) Anyway, if you do...
(I'm working on this one — if I find something I'll send a pull request. Consider this as much a development log as a feature request!) Apple's version of `nc`...
I don't know if you've noticed this, but it appears that the Travis tests for this project have been failing for some time... on the main branch. Feel free to...
Here's my example program: ```c #include #include void *thread_func(void *arg) { printf("The thread is running!\n"); return NULL; } int main() { printf("Starting\n"); pthread_t thread; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 2047); //