Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
246 views

casting doubles to integers in order to gain speed

in Redis (http://code.google.com/p/redis) there are scores associated to elements, in order to take this elements sorted. This scores are doubles, even if many users actually sort by integers (for ...
4
votes
3answers
293 views

Is there a wchar_t version for asprintf?

I need a C function which returns the final length of a formatted string so I can properly allocate the target string, rather than calculate the length myself. There is snprintf which does just this ...
3
votes
1answer
136 views

strftime performance vs. snprintf

I have run into an interesting performance conundrum but before I start delving into glibc and entering bugs left right and center I just wanted to get to get any insight that might be out there. I ...
3
votes
3answers
185 views

Why do I get segfaults when declaring a struct globally or extern?

I have a struct defined in a header as follows: #define LC_ERR_LEN 300 typedef struct dLC_ERRMSG { short nr; short strategy; char tx[LC_ERR_LEN]; } LC_ERRMSG; Which I use in my code as ...
2
votes
4answers
150 views

snprintf crash when displaying %d or %u

I'm trying to print an integer into a string with snprintf for display on an OLED display from an ARM micro. However, when I use %d or %u the micro locks up and stops executing. Using %x or %c works ...
2
votes
5answers
158 views

snprintf and sprintf explanation

can someone explain to me the output of this simple program : #include <stdio.h> int main(int argc, char *argv[]) { char charArray[1024] = ""; char charArrayAgain[1024] = ""; int ...
2
votes
1answer
132 views

How to snprintf gracefully?

How to gracefully use snprintf function or some another function from standard C library to fill the memory by ASCII representation of an array of unsigned char? char data[16]; char ...
2
votes
7answers
268 views

Different ways to calculate string length

A comment on one of my answers has left me a little puzzled. When trying to compute how much memory is needed to concat two strings to a new block of memory, it was said that using snprintf was ...
2
votes
5answers
2k views

Are snprintf and friends safe to use?

There was a question recently on SO (Why on earth would anyone use strncpy instead of strcpy?), which hade answers (answer 1, answer 2), that made me uncertain about other string functions with 'n' in ...
1
vote
3answers
58 views

Decimal to hexadecimal conversion: issues with sprintf?

I have a requirement, part of which needs conversion from decimal to hex. I prefer the following way to do that thing as below: sprintf(mcc,"%x",n); n here will be an integer. But my peer says it ...
1
vote
1answer
52 views

Fencepost conditions and portability for using of snprintf()?

Given the following code: const int size = 20; char buffer[size]; // From the Linux man page for snprintf(): // // The 'res' is the number of bytes that would be written to buffer had size been // ...
1
vote
7answers
169 views

Back to basics - idiomatic way to copy string to static array

Ok, strncpy is not designed to work with NULL terminated strings - it's not designed for NULL terminated strings (if dest is too short it won't be terminated by NULL and if dest is longer it will be ...
1
vote
5answers
285 views

C++ checking return codes

Is it worthwhile checking return codes for methods that should not fail ? For example, I usually do: char buf[MAXBUF]; snprintf(buf, sizeof(MAXBUF), "%s.%d", str, time); Is it good practice to ...
1
vote
3answers
145 views

snprintf : simple way to force . as radix?

My program was not behaving correctly on one machine so I started to hunt for the bug, and I discovered that on that machine, snprintf uses a comma (,), not a . (dot) as 99% of other computers (at ...
1
vote
4answers
283 views

What is C# analog of C snprintf()?

What is C# analog of C snprintf()? In C code here we use snprintf(buf, sizeof(buf), outfilename, frame); What could be its exact analog?
1
vote
4answers
452 views

Is a strlen call in snprintf causing this segfault?

I have a void *, call it data, whose length I know, but is not null terminated. I make a call like this snprintf(line, sizeof(line), "%*s", n, (const char*)data) where n is the known length. Almost ...
1
vote
6answers
1k views

using snprintf to avoid buffer overruns

gcc 4.4.1 C99 I am using snprintf like this to avoid a buffer overrun. char err_msg[32] = {0}; snprintf(err_msg, sizeof(err_msg) - 1, "[ ST_ENGINE_FAILED ]"); I have added the minus 1 incase the ...
1
vote
2answers
207 views

Help gcc to not warn about not using a string literal format string

I'm creating a function in C to convert an index value into a string, which is a verbose description of the "field" represented by the index. So, I have a nice array with all the verbose descriptions ...
0
votes
1answer
19 views

string formatting in OpenCL?

I am writing simple debugging/logging functions using ring-buffer in a chunk of the global memory. The problem is lack of any snprintf-like function in OpenCL. What would be the suggestion? To use ...
0
votes
1answer
47 views

Error 4 error C3861: 'snprintf': identifier not found

i am running a program on win 7 via visual studio 2008 and i am getting this error: Error 4 error C3861: 'snprintf': identifier not found i have included stdio header... i don't know what ...
0
votes
1answer
220 views

Looking for C source code for snprintf()

I need to port snprintf() to another platform that does not fully support GLibC. I am looking for the underlying declaration in the Glibc 2.14 source code. I follow many function calls, but get ...
0
votes
2answers
318 views

concatenate all argv values to one string using snprintf in C

How can I concatenate all the values in argv to one string using snprintf? if i pass in values like ./prog val1 val2 val3 val4 my string char all_values[MAX_LEN] should be "val1 val2 val3 val4" ...
0
votes
3answers
339 views

Populating static string buffer in C via snprintf

I have some buffer and known size #define BUFFER_SIZE 1024*1024 char buffer[BUFFER_SIZE]; I must populate this buffer with some complex string. int populate_string(char *buffer) { char ...
0
votes
2answers
210 views

concatenating strings and snprintf in c

I'm wondering if this is the proper way to concatenate and NUL terminate strings including width. #define FOO "foo" const char *bar = "bar"; int n = 10; float f = 10.2; char *s; int l; l = snprintf ...
0
votes
5answers
3k views

snprintf vs strcpy(etc) in c

For doing string concatenation I've been doing basic strcpy,strncpy of char* buffers. Then I learned about the snprintf and friends. Should I stick with my strcpy,strcpy + \0 terminiation. Or should ...
0
votes
3answers
143 views

Resuming [vf]?nprintf after reaching the limit

I have an application which prints strings to a buffer using snprintf and vsnprintf. Currently, if it detects an overflow, it appends a > to the end of the string as a sign that the string was chopped ...
-2
votes
3answers
424 views

snprintf overflows and prints garbage to file randomly. help

Here is my code, basically one the 4 computer I have tested it on they all work perfectly with very large data sizes, eg textfiles up to 500mb in size, but when I run them on the server with real data ...