compilation error. libjingle

../../talk/base/messagequeue.h: In constructor ‘talk_base::Message::Message()’: ../../talk/base/messagequeue.h:121: error: ‘memset’ was not declared in this scope i have failed to fix it until now.it did not compile sucessfully. a typical source is available here

Understanding the Unix ‘head’ Command

commandline session head is a program on Unix and Unix-like operating systems used to display the beginning of a text file or piped data. $sudo head /var/log/syslog Jan 5 20:10:05 debian syslogd 1.5.0#6.1: restart. Jan 5 20:10:05 debian anacron[1056]: Job `cron.daily’ terminated Jan 5 20:10:05 debian anacron[1056]: Normal exit (1 job run) Jan 5 20:12:14 …

hexdump, hd — ASCII, decimal, hexadecimal, octal dump

The hexdump utility is a filter which displays the specified files, or standard input if no files are specified, in a user-specified format. $cat version.c #include #include int main(int argc, char **argv) { printf(“MySQL client version: %sn”, mysql_get_client_info()); } Commandline Session $hexdump version.c 0000000 6923 636e 756c 10064 3c20 796d 675f 6f6c 0000010 6162 2e6c …