Tagged Questions
The non-standard tag has no wiki summary.
4
votes
9answers
711 views
What is your favourite non-standard C library function?
It has to be in a 'system' C library, not an add-on library, but it can be from any C version/compiler/system/...
Mine's strfry, from glibc, the GNU C library:
The strfry() function ...
3
votes
1answer
198 views
Is there any difference between __typeof and typeof?
There are more operators that work when we add __ to them too.
what does __ mean?
1
vote
1answer
67 views
Are there succinct listings of extensions implemented by various compilers?
I've got a section of code inside which I don't care about portability. It's Win32 API ridden code anyway; it serves to suck information out of the OS (which of course requires some form of OS ...
1
vote
1answer
84 views
reading a non-standard size binary long
I have a very specific binary file structure that I would like to read into python. I've used the struct module successfully in the past to do so. Recently, I created a large number of these files on ...
1
vote
1answer
152 views
Querying URLs on ports other than 80 with urlfetch() on app engine
Is querying for URLs present on ports other than 80 allowed with urlfetch()
I would like to get data from a server on a non-standard port -
http://example.com:8000/WebService?input=a
Ideal example ...
0
votes
3answers
170 views
How to read 5 bytes to a meanful uint64_t in C?
I need to alloc an array of uint64_t[1e9] to count something, and I know the items are between (0,2^39).
So I want to calloc 5*1e9 bytes for the array.
Then I found that, if I want to make the ...
0
votes
1answer
29 views
Specify CPPFLAGS when building with CPAN
I have a CPAN module I am attempting to build. It requires compiling a small C program. I don't have root on the system, so I have a complete parallel source tree in $HOME/local/src installed at ...
0
votes
2answers
860 views
Problem with non-standard HTML attributes? [closed]
Possible Duplicates:
Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?
Is there a generic attribute for all HTML elements aside from ID and class?
I have a series ...
0
votes
2answers
95 views
SQL string replacement workaround
I'm working in a modified version of Sybase 10 that doesn't have the stuff, replace or str_replace functions. I need to replace part of string in a number of records.
Are there any creative ways to ...
0
votes
1answer
2k views
How to make text run top-to-bottom in CSS?
Does anyone know how to make text align top-to-bottom in a div.
SO won't even let me demonstrate it . . . I just want the letters to stack on top of each other in a vertical line down the page like ...