The strncpy tag has no wiki summary.
0
votes
3answers
65 views
Not working / with own Strncpy function
I'm having probs with an own function that should make str2 copied to str1 based on the amount of characters.
char * strncpy_own(char * str1, char * str2, int c)
{
int i;
for( i = 0; i < ...
5
votes
2answers
95 views
What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
What is the significant difference between memcpy() and strncpy()? I ask this because we can easily alter strncpy() to copy any type of data we want, not just characters, simply by casting the first ...
0
votes
3answers
68 views
Output wrong. Possible strncpy issue?
So, I'm trying to get this code to parse each line inputted from the file into individual tokens, then add each one in turn to tklist array. Then the main just prints out each token. It's printing ...
0
votes
1answer
88 views
c++ c-strings, strncat, strncpy
This program is supposed to input someones name and output it like " Last, first middle". The names are supposed to be stored in 3 different arrays and their is a fourth array for the full name at the ...
0
votes
3answers
33 views
strncpy() core dump when I use Libtar in ubuntu12.04
I trace the coredump in the encode.c:33.
The source code like this:
if (t->options & TAR_GNU)
strncpy(t->th_buf.magic, "ustar ", 8); // here is the coredump ...
1
vote
1answer
67 views
strncpy append 1 extra(weird or random)char
I wrote a simple c program that only take the first two characters of one word and take the last three characters of the second word. I use strncpy to only copy the first 2 letter of name1 to name, ...
0
votes
2answers
90 views
strncpy to already created char []
There is class
class Cow{
char name[20];
char* hobby;
double weight;
public:
[..]
Cow & operator=(const Cow &c);
[..]
};
and I'm wondering how to write definition of ...
2
votes
1answer
94 views
SEGMENTATION FAULT in strncpy - load from dictionary
I have this function "load" where I read words from a dictionary and put them in an hashtable of linked lists. When I try to read a line and save it in my new_node->text the compiler returns ...
-2
votes
1answer
103 views
Simple calculator in C using strncpy [closed]
Take a look at the script. It calculates telop and prints the answer. As you can see it can only calculate plus (+) now. I have never done any C coding and so I don't know how to make it calculate ...
1
vote
3answers
105 views
strncpy causing LPC-2378 to hang/die
I'm doing some work on an Olimex LPC2378-STK.
I have the following declaration.
unsigned char buffer[256];
I then attempt to do:
strncpy((char *)buffer, "CREATED_BY", 255);
Does anyone know why ...
0
votes
4answers
156 views
Using strncpy() to copy const char *
I'm very new to C, I'm getting stuck using the strncpy function.\
Here's an example of what I'm working with:
int main()
{
const char *s = "how";
struct test {
char *name;
};
struct test *t1 ...
0
votes
1answer
179 views
assign value to pointer char?
struct group {
char *name;
struct user *users;
struct xct *xcts;
struct group *next;
};
int add_group(Group **group_list_ptr, const char *group_name) {
printf("%p\n",group_list_ptr);
...
2
votes
4answers
298 views
strncpy leading to segmentation fault
I am just messing around with strncpy.
My program looks like this
typedef struct
{
char from_str[10];
}test;
main ()
{
test s1;
memset(&s1,0,sizeof(test));
char ...
0
votes
4answers
172 views
strncpy is not working as expected
#include <iostream>
using namespace std
#include <string.h>
int main(){
char token[] = "some random string";
char c[23];
strcpy( c, token);
strncpy(c, token, 5);
...
0
votes
3answers
121 views
Why does this strncpy() implementation crashes on second run?
Why does this strncpy() implementation crashes on second run, while the first run works ok?
strncpy
Copy characters from string Copies the first n characters of source
to destination. If ...
2
votes
1answer
87 views
strncpy behavior differs from sprintf's
I am using the following code to create a 'Key' to be used to test a hash table (in particular, I am testing the time required to remove items):
void remove_keys()
{
for (int i = 0; i < ...
3
votes
3answers
149 views
Using strncpy. Valgrind throws invalid read
I made this function:
void procesar_llamadaAFuncion(t_proceso *unProceso, char *sentencia){
char *nombreFuncion = sentencia;
char *nombreFuncionSinParentesis = NULL;
...
0
votes
2answers
118 views
Bus Error with strncpy in C
I am working on the same project as in this question, however with a slightly different typedef:
typedef struct {
char* word;
int index;
} data_t;
typedef struct node node_t;
typedef node {
...
1
vote
4answers
153 views
Copy end of string in C
I am trying to use strncpy to only copy part of a string to another string in C.
Such as:
c[] = "How the heck do I do this";
Then copy "do this" to the other string, such that:
d[] = "do this"
...
0
votes
1answer
101 views
Using command line in C to detect arguments, and then print out the first or second char of the arguments
I need to make a program that accepts no less than 2 and no more than 6 arguments at the command line and then prints out the 1st or 2nd character
EX: asdf asdf asdf asdf
prints out as: a s a s
I ...
1
vote
2answers
130 views
C:strncpy causing problems with pointer [duplicate]
Possible Duplicate:
Why do I get a segmentation fault when writing to a string?
I want to replace a word in a string. Here is the code
char text[] = "This is a list of lists";
char *find = ...
0
votes
2answers
253 views
How to strncpy() to WCHAR
I got a piece of code that works under Multi-Byte Character Set. However, I want to convert this piece of code to UNICODE. So I fixed lots of stuff, but failed at the strncpy() line. This is the line ...
4
votes
4answers
144 views
Creating C substrings: looping with assignment operator VS strncopy, which is better?
This might be somewhat pointless, but I'm curious what you guys think about it. I'm iterating over a string with pointers and want to pull a short substring out of it (placing the substring into a ...
3
votes
3answers
821 views
strncpy vs sprintf
I can see many sprintf's used in my applications for copying a string.
I have character array
char myarray[10];
const char *str="mystring";
Now if i want want to copy the string str into myarray!
...
0
votes
2answers
120 views
C Language: Newb translating code from javascript to C, code includes malloc, strncpy, pointers
I am converting (from javascript) a program that will take a string of variable length (but always under 100 char) and return the data contained in the string in individual variables. This is the ...
0
votes
5answers
371 views
Garbage being printed when using strcpy
I have a function that will parse some data coming in. My problem is that after using strncpy I get some garbage when I try to print it. I try using malloc to make the char array the exact size. ...
1
vote
3answers
68 views
Getting a string to a certain length.
I am currently working with a file name and I need to get the name excluding the extension. I have a separate function that determines the extension of the file but can't find a way how to get the ...
0
votes
4answers
543 views
C++ copy const char* to char*
I have a function
ClassA::FuncA(const char *filePath)
and want to copy this const char string* to a char*!
My solution:
char *argv[2];
int length = strlen(filePath);
argv[1] = new char(length ...
1
vote
1answer
123 views
What security issues exist with this strncpy? [duplicate]
Possible Duplicate:
Why is strncpy insecure?
What are the security issues with strncpy():
function foo(char * param) {
char local[100];
/* do stuff */
strncpy(local, param, ...
0
votes
3answers
168 views
why will strcpy only copy a limited number of elements:
C++ newbie here. Writing a simple program. Everything works,except when I attempt to extract firstname and surname and print these individually, the number of letters printed in surname will always be ...
2
votes
5answers
506 views
Copying n chars with strncpy more efficiently in C
I'm wondering if there's a cleaner and more efficient way of doing the following strncpy considering a max amount of chars. I feel like am overdoing it.
int main(void)
{
char *string = ...
0
votes
2answers
2k views
copy character from string to another string in C
I have a string AAbbCC what I need is to copy the first two and add them to an array then copy the middle two and add them to an array and finally the last two and add them to an array.
this is what ...
0
votes
11answers
140 views
Can you change the size of what a pointer point to
For example if a pointer points to an array of chars that read "Hello how are you?" And you only want the pointer to point to Hello. I am passing in a char pointer and when I cout it, it reads the ...
0
votes
5answers
192 views
strncpy char string issue when adding length
I'm having a problem with comparing 2 char strings that are both the same:
char string[50];
strncpy(string, "StringToCompare", 49);
if( !strcmp("StringToCompare", string) )
//do stuff
else
//the ...
0
votes
0answers
141 views
Strncpy to a thread local variable
I had an interesting question.
I am passing an error string from Linux kernel to userspace. I have a library in user space with api's. The applications link to this library. When applicaiton call the ...
0
votes
3answers
125 views
strcpy() creates error
I have this structure which i am trying to initialize using the following code. It gets run time error when trying to initialize "finger_print"
What is wrong with it?
typedef struct fpinfo
{
...
1
vote
5answers
291 views
strncpy introduces funny character
When I run some code on my machine then it behaves as I expect it to.
When I run it on a colleagues it misbehaves. This is what happens.
I have a string with a value of:
croc_data_0001.idx
...
2
votes
4answers
647 views
traversing C string: get the last word of a string
how would you get the last word of a string, starting from the '\0' newline character to the rightmost space? For example, I could have something like this where str could be assigned a string:
char ...
0
votes
2answers
1k views
cast to pointer from integer of different size [-Wint-to-pointer-cast]
Well, I have to revive a question that was answered here before. I've made some changes for other reasons and now I have a problem again. Here is the relevant details:
volatile char ...
0
votes
2answers
515 views
Passing volatile array to strncpy
In my ISR I have a buffer that gets stuffed from the USART so I declared the buffer as volatile:
volatile uint8_t RxBuffer1[BUFFER_LENGTH];
Ok, no problem there. I believe that is standard ...
4
votes
5answers
527 views
strncpy equivalent for std::string?
Is there an exact equivalent to strncpy in the C++ Standard Library? I mean a function, that copies a string from one buffer to another until it hits the terminating 0? For instance when I have to ...
0
votes
1answer
365 views
Strncpy() string length output error
I am having a problem with strncpy() copying an extra character at the length I need. I need to copy the 10 most significant bits from one string to another (both in char* format).
The size of the ...
1
vote
3answers
353 views
strncpy segfault
I've been having trouble getting this section of code to work. I'm trying to get a character array to be copied so I can get a count of how many tokens there are to dynamically allocate and save them ...
2
votes
2answers
451 views
strncpy overwrites existing character string
I've created a function to convert a number into a roman numeral. I know the logic of the conversion itself is correct, however, each time strncpy is called, it overwrites the previous value of "rom". ...
3
votes
5answers
806 views
utf8 aware strncpy
I find it hard to believe I'm the first person to run into this problem but searched for quite some time and didn't find a solution to this.
I'd like to use strncpy but have it be UTF8 aware so it ...
0
votes
5answers
1k views
strncpy or strlcpy in my case
what should I use?
char dst_arr[10];
char *dst_ptr;
char *src_str = "hello";
what should I use when I want to copy src_str to dst_arr and dst_ptr and why?
PS: my head is spinning faster than the ...
0
votes
1answer
70 views
Issue with string length 76
I am at a loss here.
Will post my code in a short while...just that its too long to extract portions of the "troubling" giving code. Will expalin my issue here: I store a string(path to a file or ...
0
votes
1answer
76 views
Why would a native program run fine when executed directly, but fail with a seg fault when submitted through condor
I have a third party library that I'm attempting to incorporate into a simulation. We have the static library (.a), along with all of it's runtime dependencies (shared objects). I've created a very ...
3
votes
4answers
1k views
Convert zero-padded bytes to UTF-8 string
I'm unpacking several structs that contain 's' type fields from C. The fields contain zero-padded UTF-8 strings handled by strncpy in the C code (note this function's vestigial behaviour). If I decode ...
3
votes
5answers
340 views
strncpy documentation question
At the following regarding strncpy: http://www.cplusplus.com/reference/clibrary/cstring/strncpy/, it mentions the following:
No null-character is implicitly appended to the end of destination, so ...

