Top "Ansi" questions

ANSI stands for American National Standards Institute.

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 …

ruby utf-8 ansi iconv
How to convert char pointer into char in C Open VMS

This is to convert from char pointer into char. I followed the codes from another topic but it seems like …

c ansi vms
How to convert ansi text to utf8

How to convert ansi text to utf8 in Go? I am trying to convert ansi string to utf8 string.

utf-8 go ansi
ANSI Color Codes in VIM

I have a script that generates a log file with ANSI color codes in them like so: [2012-05-14 18:00:02] ^[[0mINF: …

vim ansi color-codes
Loading RTF text from database into TRichEdit

I am currently in the process of migrating our software solution from Delphi 7 to 2010. Mostly the changes have been simple …

delphi unicode delphi-2010 ansi richedit
C# UNICODE to ANSI conversion

I need your help concerning something which disturbs me when working with UNICODE encoding in .NET Framework ... I have to …

c# unicode ansi
Bit Setting and Bit Shifting in Ansi C

Can anyone explain this bitwise operation syntax? #define Bitset(var,bitno) ((var) |=1UL<<(bitno)) I know it sets …

c bit-manipulation bitwise-operators bit-shift ansi
adding text decorations to console output

I have a c# .net 3.5 application that writes text to the console using a StreamWriter. Is there a way I …

c# console ansi text-decorations
Getting Control Flow Graph from ANSI C code

I'm building tool for testing ansi c applications. Simply load code, view control flow graph, run test, mark all vertexes …

c gcc graph ansi
clarification for RAND_MAX and rand() in c stdlib.h

why does the following c code produce real numbers only ranging between 0 and 1(eg: 0.840188,0.394383...etc) for double a,b when …

c gnu ansi ansi-c