June 25, 2002 D » Re: Bug in docs and phobos (kill printf) | |||
|---|---|---|---|
| |||
...s", len, str) internally read (at least) one byte more than specified by 'len', and... | |||
June 21, 2002 D » Re: something evil with array concatenation in recursive functions | |||
|---|---|---|---|
| |||
...int len = strlen(currentFileData.cFileName); | itm.str = new char[len]; | itm.str[0..len] = currentFileData... | |||
June 21, 2002 D » something evil with array concatenation in recursive functions | |||
|---|---|---|---|
| |||
...int len = strlen(currentFileData.cFileName);
itm.str = new char[len];
itm.str[0..len] = currentFileData... | |||
June 03, 2002 D, GDC » Re: Study of GCC frontend and Walter's DMD compiler sources] | |||
|---|---|---|---|
| |||
...gcc-3.0/libiberty/argv.c:109: `len' was not declared in this scope ../../gcc... | |||
April 24, 2002 c++.windows.32-bits » Three problems with linking and compiling | |||
|---|---|---|---|
| |||
...lst) output library file (.lib) Assertion failure: 'len <= IDMAX' on line 129 in file 'libin... | |||
February 27, 2002 D » syntactic sugar for asm functions | |||
|---|---|---|---|
| |||
...extern(C) uint crc32(void* data, int len) asm
{
// assembler goes here
}
This is a... | |||
February 27, 2002 D » syntactic sugar for asm functions | |||
|---|---|---|---|
| |||
...extern(C) uint crc32(void* data, int len) asm
{
// assembler goes here
}
This is a... | |||
February 09, 2002 D » Re: regexp suggestion | |||
|---|---|---|---|
| |||
...text.length]);
if (len)
{
// match!
token = text[pos .. pos + len];
pos += len;
}
}
Regexp comparison is... | |||
February 09, 2002 D » Re: construction destruction conventions | |||
|---|---|---|---|
| |||
...readObject()
{
int len;
char[] classname;
Object obj;
IPersistent pers;
// read classname
file.read(len);
classname... | |||
February 04, 2002 D » Re: array bounds checking | |||
|---|---|---|---|
| |||
...a pointer p into a "bounded pointer" bp: char *p; char[] bp = p[0..len]; | |||
Copyright © 1999-2021 by the D Language Foundation