document changes
This commit is contained in:
parent
05b4cf85f7
commit
b600e2ef32
7
CHANGES
7
CHANGES
@ -1,3 +1,10 @@
|
|||||||
|
0.7:
|
||||||
|
add buffer_putspace
|
||||||
|
fix b0read prototype in buffer/buffer_0*
|
||||||
|
scan_ip6 will not transparently scan IPv4 addresses and save them as
|
||||||
|
v4-mapped addresses (::ffff:127.0.0.1).
|
||||||
|
byte_copy was sped up (but made larger in the process)
|
||||||
|
|
||||||
0.6:
|
0.6:
|
||||||
changed name to libowfat.
|
changed name to libowfat.
|
||||||
fixed fmt_ulong (did not output 0 correctly).
|
fixed fmt_ulong (did not output 0 correctly).
|
||||||
|
5
t.c
5
t.c
@ -14,8 +14,13 @@
|
|||||||
__asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
|
__asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
|
||||||
|
|
||||||
int main(int argc,char* argv[]) {
|
int main(int argc,char* argv[]) {
|
||||||
|
char buf[100];
|
||||||
|
buf[fmt_ulong(buf,0)]=0;
|
||||||
|
puts(buf);
|
||||||
|
#if 0
|
||||||
buffer_putspace(buffer_1);
|
buffer_putspace(buffer_1);
|
||||||
buffer_flush(buffer_1);
|
buffer_flush(buffer_1);
|
||||||
|
#endif
|
||||||
#if 0
|
#if 0
|
||||||
long a,b,c;
|
long a,b,c;
|
||||||
char buf[4096];
|
char buf[4096];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user