Tagged Questions
American National Standards Institute (ANSI)
18
votes
2answers
596 views
fopen for everything - is this possible?
I used to programing windows, but I want to try my hand on making a cross-platform application. And I have some questions, if you don't mind:
Question 1
Is there some way to open UNICODE\ASCII file ...
18
votes
13answers
1k views
Why do no databases fully support ANSI or ISO SQL standards?
If I were designing a oil refinery, I wouldn't expect that materials from different vendors would not comply with published standards in subtle yet important ways. Pipework, valves and other ...
18
votes
9answers
18k views
What is ANSI format?
What is ANSI encoded format? Is it a system default format?
In what way does it differ from ASCII?
15
votes
8answers
1k views
ANSI C equivalent of try/catch?
I have some C code I'm working with, and I'm finding errors when the code is running but have little info about how to do a proper try/catch (as in C# or C++).
For instance in C++ I'd just do:
try{
...
12
votes
2answers
115 views
GCC options for strictest C code?
What GCC options should be set to have GCC as strict as possible? (and I do mean as strict as possible) I'm writing in C89 and want my code to be ANSI/ISO compliant.
11
votes
4answers
249 views
Why does my C++0x code fail to compile if I include the “-ansi” compiler option?
I've come across a really weird error that only pops up if I use the ansi flag.
Here's minimal.hpp:
#ifndef TEST_HPP
#define TEST_HPP
#include <memory>
class Test
{
public:
explicit ...
10
votes
3answers
3k views
How can I get TStringList to sort differently in Delphi
I have a simple TStringList. I do a TStringList.Sort on it.
Then I notice that the underscore "_" sorts before the capital letter "A". This was in contrast to a third party package that was sorting ...
9
votes
1answer
101 views
string array initialisation
This is a continuation of another question I have.
Consider the following code:
char *hi = "hello";
char *array1[3] =
{
hi,
"world",
"there."
};
It doesn't compile to my surprise ...
9
votes
2answers
647 views
An Eclipse console view that respects ANSI color codes?
The output from ScalaTest is colored to distinguish different states, but these end up as control codes and
[34m Annoying garbage
Is there any way to convince the Eclipse console to either ...
9
votes
9answers
2k views
How do I correct the character encoding of a file?
I have an ANSI encoded text file that should not have been encoded as ANSI as there were accented
characters that ANSI does not support. I would rather work with UTF-8.
Can the data be decoded ...
8
votes
4answers
78 views
string array conversion
I have the following code:
char *array1[3] =
{
"hello",
"world",
"there."
};
struct locator_t
{
char **t;
int len;
} locator[2] =
{
{
array1,
10
}
};
...
8
votes
4answers
870 views
ANSI C vs other C standards
On several compilers I have used (all gcc but various versions) I get a C99 mode error for things like declaring int i inside the for loop expression instead of before it (if I do not use the std=c99 ...
8
votes
9answers
436 views
SQL Joins: Future of the SQL ANSI Standard (where vs join)?
We are developing ETL jobs and our consultant have been using "old style" SQL when joining tables
select a.attr1, b.attr1
from table1 a, table2 b
where a.attr2 = b.attr2
instead of using inner join ...
8
votes
3answers
928 views
Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007)
Is there a routine available in D2007 to convert the characters in the high range of the ANSI table (>127) to their equivalent ones in pure ASCII (<=127) according to a locale (codepage)?
I know ...
7
votes
2answers
359 views
What is a pure-C alternative to STL containers? [closed]
Possible Duplicate:
Container Class / Library for C
One of the primary reasons to use C++ over C is the superbly convenient containers that STL provides. However, if I want to write my code ...
7
votes
1answer
303 views
 Appears at the beginning of my utf-8 text file when view as ANSI
I have a text file and it uses utf-8, but when the users view it in ANSI unknown characters appear at the very beginning. I am using C#.
Thanks.
7
votes
4answers
2k views
256 color terminal library for Ruby?
Is there a gem like 'Term::ANSIColor' which works with 256 color terminals? The perl script 256colors2.pl works great in my terminal, and I'd like to use some of these colors in my ruby scripts ...
7
votes
3answers
8k views
Unicode, UTF, ASCII, ANSI format differences
whatis the difference between Unicode, UTF8, UTF7,UTF16,UTF32,ASCII, ANSI code format of encoding in ASP.net
In what these are helpful for programmers.
7
votes
3answers
477 views
Advice about forming Hackers Club
I'm thinking of forming a Hackers Club at work. My idea is that we would meet monthly and at each meeting one member would present an interesting hack he had created. (The hacks presented wouldn't ...
6
votes
2answers
165 views
C++ standards, am a little confused?
I am aware the standard was ratified in 1998, and an update to repair some defects in the standard took place in 2003 (the ISO standards) although I am unsure of the relation of C++98 and the ANSI C ...
6
votes
1answer
132 views
What's the difference of ANSI Smalltalk and Smalltalk-80?
I discovered there is no mentioning about thisContext in ANSI Smalltalk specification (draft).
I assumed ANSI Smalltalk as standardized Smalltalk-80, so I can't understand why it's not there. What's ...
6
votes
2answers
231 views
Implementing an overflow-free system stack in ANSI C
I was just reading about how Google Go makes each thread with a reduced stack size by default, and then links to new stacks if an overflow would occur ( see page 16 in here ). I was wondering the best ...
6
votes
11answers
5k views
Why should you use strncpy instead of strcpy?
Edit: I've added the source for the example.
I came across this example:
char source[MAX] = "123456789";
char source1[MAX] = "123456789";
char destination[MAX] = "abcdefg";
char destination1[MAX] = ...
6
votes
3answers
20k views
How do you properly use WideCharToMultiByte
I've read the documentation here:
http://msdn.microsoft.com/en-us/library/ms776420(VS.85).aspx
I'm stuck on this parameter:
lpMultiByteStr
[out] Pointer to a buffer that receives the converted ...
5
votes
2answers
78 views
Python module to enable ANSI for stdout on Windows?
I am looking for a Python module that would add ANSI support under Windows.
This means that after importing the module, if you output ANSI escaped strings, they will appear accordingly.
5
votes
1answer
61 views
List of differences between SQL databases
Most SQL databases follow the ANSI SQL standards to a degree, but
The standard is ambiguous, leaving some areas open to interpretation (eg: how different operations with NULLs should be handled is ...
5
votes
2answers
106 views
calling virtual functions through pointers with and without consulting the VM-table
I want to take the address of a member function of a c++ class, store it in a pointer, and call the virtual function later on.
I know some things about it, but do not now how to take the address of ...
5
votes
4answers
423 views
json_encode() non utf-8 strings?
So I have an array of strings, and all of the strings are using the system default ANSI encoding and were pulled from a sql database. So there are 256 different possible character byte values (single ...
5
votes
1answer
52 views
Verifying ctypes type precision in Python
If an API expects a 64 bit type, how can I check that a ctypes type has that many bits if sizeof returns the number of bytes?
How do I know how many bits are in each byte on the current platform?
...
5
votes
2answers
805 views
Why won't this code compile and run in Visual Studio 2010?
I am trying to get Visual Studio 2010 set up to do plain old ANSI compilation, without Microsoft extensions of any kind.
I started with an empty project template, since there doesn't seem to be a ...
5
votes
2answers
956 views
VS2010 C and C++ - enforce ANSI compliance for Linux/gcc compatibility?
I'm taking a class in which I'm required to write some C++ apps for Linux. I really, really dislike the dev tools available under Linux, but I love VS2010.
Is there any sort of compiler switch which ...
5
votes
3answers
495 views
How do I fix invalid HTML characters in pages served with different encoding?
I have a number of websites that are rendering invalid characters. The pages' meta tags specify UTF-8 encoding. However, a number of pages contain characters that can't be interpreted by UTF-8, ...
5
votes
2answers
123 views
SQL statement to select the value of the latest version of data based on the latest date
I have a simple query and am wondering if it could be more elegantly coded. The final solution has to be ansi-compliant.
I need to fetch the latest value from a table based on date and version. A ...
5
votes
6answers
2k views
Text editor/viewer with ANSI codes rendering support for Windows
I need some tool to display text containing ANSI codes correctly on Windows. No full support needed, but at least coloring/bold is a must.
Reason: My logger/debug module produce nicely rendered rich ...
5
votes
3answers
724 views
What the best resource to learn ANSI SQL?
I don't mean "Basic SQL", but strongly the specs and the difference between the specs and the implementations between great databases (like SQL Server, Oracle, etc).
5
votes
2answers
10k views
Converting UTF8 to ANSI with Ruby
I have a Ruby script that generates a UTF8 CSV file remotely in a Linux machine and then transfers the file to a Windows machine thru SFTP.
I then need to open this file with Excel, but Excel ...
4
votes
5answers
57 views
Struct pointer compatibility
Suppose we have two structs:
typedef struct Struct1
{
short a_short;
int id;
} Struct1;
typedef struct Struct2
{
short a_short;
int id;
short another_short;
} Struct2;
Is it ...
4
votes
2answers
205 views
Can an ANSI C-compliant implementation include additional functions in its standard library?
Is an ANSI C-compliant implementation allowed to include additional types and functions in its standard library, beyond those enumerated by the standard? (An ideal answer would reference the relevant ...
4
votes
4answers
52 views
Does continous reassigning of character strings lead to memory leak?
I have two questions:
Q1. The character pointers are used to point to a location where a given string is stored. If we keep reassigning the string, does it lead to memory leak?
On a Linux system I ...
4
votes
1answer
81 views
Why this function has both Unicode and ANSI versions?
Why does EndUpdateResource have both Unicode and ANSI versions?
4
votes
1answer
310 views
Is there a way to check a file encoding using JavaScript?
Here's my case: I'm working with a very big project that contains lots of files. Some of these files are encoded in UTF-8, other in ANSI. We need to convert all the files to UTF-8, because we decided ...
4
votes
2answers
415 views
Are there any differences between ANSI C and ISO C?
I understand that there is both an ANSI standard and an ISO standard for C. Are there any differences between these two standards? If so, what are they? And if there is not a difference then what's ...
4
votes
3answers
503 views
How do command-line interpreters work?
I have been under the impression that processes on the operating system have three standard streams: stdin, stdout, and stderr. I have also thought that text editors like vim work by taking input over ...
4
votes
6answers
644 views
How to make a text file have more than one encoding?
I have a file which is ANSI encoded. However it shows Arabic letters inside it. this text file was generated by some program (I have no info on) but it seems like there is some kind of internal ...
4
votes
2answers
461 views
Matrix Standard library
Is there any standard library of Matrix in c. Which I can implement across the platform. If not then kindly tell me OS dependent libraries of Matrix.
4
votes
3answers
757 views
Why does GCC allow use of round() in C++ even with the ansi and pedantic flags?
Is there a good reason why this program compiles under GCC even with the -ansi and -pedantic flags?
#include <cmath>
int main (int argc, char *argv [])
{
double x = 0.5;
return ...
4
votes
4answers
2k views
Shell Prompt Line Wrapping Issue
I've done something to break my Bash Shell Prompt in OS X (10.5.7) Terminal.
This is the PS1 that I had configured:
PS1='\[\e[1;32m\]\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
As far as I can tell I ...
4
votes
5answers
897 views
Why is this regular expression faster?
I'm writing a Telnet client of sorts in C# and part of what I have to parse are ANSI/VT100 escape sequences, specifically, just those used for colour and formatting (detailed here).
One method I have ...
3
votes
4answers
91 views
Non-ASCII characters in C
I was looking at google go's runtime source code (at https://go.googlecode.com/hg/src/pkg/runtime/ ), and it seems they use a special character for their function names, · . (Look for example at ...
3
votes
2answers
48 views
Can I find out if string to ANSI conversion will result in loss of data?
Say, when I convert a string into a byte array using single-byte encoding, some characters will be replaced with '?':
string strData="©";
byte[] bytesData = Encoding.ASCII.GetBytes(strData);
Is ...