0
votes
0answers
39 views

buffer overflow when using peg/leg

I'm using Ian Piumarta's peg/leg software to parse a toy language that I'm working on. Unfortunately some inputs to the parser are causing a crash that Clang's address sanitizer says is caused by a ...
-7
votes
1answer
98 views

What does *int mean? [closed]

I know what a pointer is, but during some coding exercises i had a typo and instead of int* used *int. I understand it's wrong, but does it mean something in C (e.g syntactically valid)? is it ...
2
votes
1answer
88 views

Binary streams parsing library for C

Could you advise a proven binary stream parsing library for C? It will be nice if it will be as declarative as C allows. I need it for binary protocol parsing and describing the quite complicated ...
0
votes
2answers
57 views

How can I execute a command with multiple arguments in my shell in C?

I want my shell to be able to run cat file.txt as well as ls -l I'm not sure how to do this, because with cat the 2nd argument is always a text file, however, with commands such as ls the 2nd ...
-1
votes
1answer
28 views

Crash after reading training data for libsvm

I have scaled my training data and tried to do cross validation to obtain the best parameters but I don't know how to do. I tried to read my scaled training data and assign them to an svm_problem ...
1
vote
3answers
131 views

Parse a string in C and save it to an array of structs

I am quite familiar with Python coding but now I have to do stringparsing in C. My input: input = "command1 args1 args2 arg3;command2 args1 args2 args3;cmd3 arg1 arg2 arg3" My Python solution: ...
1
vote
1answer
46 views

Parsing the Arguments

I am currently trying to understand the basis of parsing and wrote that code. The code is very simple. I just want to write a program that is able to make different jobs with different commends. I use ...
0
votes
1answer
37 views

Parse data from buffer of a bin file c

I have a bin file wich contais some data, i am suposed to read that data and store it in variables. The problem is i dont know how to parse the data from the buffer. FILE *file; char *buffer; //Abre ...
1
vote
3answers
48 views

Processing C command line arguments

How do I process multiple command line arguments like say in a package manager? I am giving a shot at writing a package manager and right now accepting the packages to install is giving me quite the ...
0
votes
2answers
45 views

Get nodes in html document contains word

I want to write a script that checks a document for keywords and specifies html document nodes in which they are contained (possibly assign a unique identifier). I am not a professional programmer ...
0
votes
1answer
72 views

How (if possible) to use PostgreSQL's parser (in C) independently?

I need a parser (mainly for the "select" type of queries) and avoid the hassle of doing it from scratch. Does anybody know how to use the scan.l/gram.y of pgsql for this purpose? I've looked up pgpool ...
-1
votes
1answer
28 views

installing json-glib on centOS6 [closed]

I need to use json parsing in C. I consider that using json-glib might be makes things easy. so I downloaded and ./configure. while ./configure --prefix=/usr, console print some error. messages ...
-2
votes
3answers
65 views

How to parse path-like string in C [closed]

I want to get some information from string like this: add@/devices/pci0000:00/0000:00:11.0/0000:02:03.0/usb1/1-1/1-1:1.0/host26/target26:0:0/26:0:0:0/block/sdh/sdh1 ...
0
votes
2answers
50 views

parsing a string using pointer pointing to a string without using strdup and strtok functions

I am writing a code in which i want to parse a incoming string(basically this is for embeddded project, but i want to test it first in C).The string can be a GPS output , basically a NMEA string.Even ...
-6
votes
0answers
68 views

regex invalid syntax line c [closed]

Hey, i'm searching how verify syntax line in python with a regex. These lines are invalid and need to return 1 i= 0; i =0; while (i<5) while (i <5) while (i< 5) strcat(buffer,ez) ...
2
votes
1answer
50 views

How to use fscanf to read a line to parse into variables?

I'm trying to read a text file built with the following format in every line, for example: a/a1.txt a/b/b1.txt a/b/c/d/f/d1.txt Using fscanf to read a line from file, how can you automatically ...
1
vote
3answers
117 views

How to add a question mark to the end of a line?

I want to check to see if the user added a ? to the end of the buffer. If not, I want the program to add one automatically. This is what I have so far. I dont know what to do next. First I check to ...
1
vote
3answers
37 views

Using C sscanf to parse number from a directory path

I have the following string /foo123/bar123/card45/foofoo/1.3/ And I want to parse the number that follows the word "card", which in the example above would be 45. Should I use sscanf for this and ...
1
vote
4answers
64 views

C strtok and strcpy

I have a text file, similar to the following: Name1: ID1 Name2: ID2 Name3: ID3 I am trying to parse it to get Name1 Name2 Name3 stored in a variable. I wrote the following function: /* * ...
1
vote
1answer
64 views

Defining sets C++

I'm implementing a syntax analyzer for Clite as a Programming Languages class assignment. I'm using a recursive descent parser with a match() function that takes a string from an input scanner as an ...
0
votes
0answers
49 views

Not understanding results from strtok()

I'm working on parsing a file and have been attempting to use the strtok() function to try and help with the process. Imagine this excerpt from a text file: .text main: lw $a0, array ...
-2
votes
2answers
49 views

How to parse the end of char array? [closed]

So let's say I have a line that looks like this: "abcdefghi" If I want "hi", and there is nothing that comes after it, how can I parse? I tried strtok(str, "'\0'") but I can't seem to get that to ...
-1
votes
2answers
108 views

Descent recursive parser implementation in C++, based on EBNF Grammar

I have implemented descent recursive parser in C++ that is based on EBNF grammar and its pseudo-code. Here is the code: #include<iostream.h> #include<conio.h> #include<string.h> ...
-1
votes
2answers
258 views

How does printf in c++ process the arguments that are passed to it? [duplicate]

I have been trying to understand how printf processes the arguments that are passed to it. To be more specific can someone please explain how the following outputs occour. int a=1; printf("%d %d ...
2
votes
3answers
90 views

Parsing a string in C

I want to parse a string and do some checks on the last character of the string. For example: char *name = "angela"; int i; for(i = 0; i <= strlen(name); i++) { if(name[i] == 'a' && i ...
-3
votes
1answer
84 views

Turning \\ into \ in C

This is the problem: This would seem like an easy task but I can't get *word, which stores characters, to store one '\' instead of '\\'. The ascii code for '\' is 92 hence why I compare c with 92. I ...
-1
votes
3answers
85 views

Two semicolons inside a for-loop parentheses

Im customising a code i found over the internet (it's the adafruit tweet receipt). I cannot understand many parts of the code but the most perplexing to me is the for-loop with two semicolons inside ...
-3
votes
2answers
55 views

Parse human-readable sizes (k, M, G, T) into bytes in C

I'm looking for a quick way to parse human-readable byte sizes (examples: 100, 1k, 2M, 4G) into a byte values. The input is a char * and the output must be a size_t (e.g. unsigned, likely 64-bit or ...
1
vote
2answers
115 views

How to parse simple string in C?

I have a string with the following format: start 123 I am parsing it that way: if (strstr(line, "start") == line) { int number = -1; if (sscanf(line + strlen("start "), "%d", &number) ...
3
votes
1answer
84 views

C parsing a string divided

I hate to be that guy asking easy questions but I am bit rusty in my C and something is eluding me here. I am trying to read a file with the following sample text: 23# ...
0
votes
1answer
43 views

handing lists of variable names in bison/yacc

I'm having trouble figuring out how to write a parser with bison. In order to insert variables into my symbol table so that I can do some type-checking and other nonsense I need the variable name and ...
0
votes
2answers
71 views

Printing Array of Strings

I'm parsing a text file: Hello, this is a text file. and creating by turning the file into a char[]. Now I want to take the array, iterate through it, and create an array of arrays that splits the ...
0
votes
2answers
63 views

Fragmenting and Un-fragmenting files in C

I wanted to take a file (text or binary) and fragment it into small pieces of a certain size (about 250-500kB), randomize the order of the fragments, and put it into another temporary fragmented file. ...
3
votes
3answers
98 views

How do I parse a char array as integer?

I have a buffer like char array like this: char buf[4]; buf[0] = 0x82; buf[1] = 0x7e; buf[2] = 0x01; buf[3] = 0x00; I would now like to read char two and three together as a 16Bit unsigned integer ...
0
votes
3answers
57 views

How to compare nlink_t to int

I use stat system call on Linux and retrieve file information. char *parent_dir; // for example: /run/atd.pid/ struct stat buf; stat(parent_dir, &buf); buf structure type: struct stat { ...
1
vote
0answers
106 views

Parse dev/input/event touch events

I am able to read events from dev/input/event* on a Android phone. However they are row codes in certain sequence like a touch event gives. 3 53 216 3 54 444 3 48 40 3 50 5 0 2 0 0 0 0 How do ...
0
votes
1answer
92 views

Parsing words in C; Translating program

I'm developing a program that will translate a string from the user (English) into Spanish. For the assignment I'm given a file that contains a list of a 100 words and their spanish equivalent. I've ...
1
vote
0answers
161 views

parse error before “extern” in C

Previously working program(compiled and linked) in C has stopped compiling with the following message without any coherent reason. \Downloads\petsc-3.3-p6\include\mpiuni\mpi.h|119|error: parse error ...
-2
votes
2answers
35 views

char* Analyzing/Parsing

I have a char* that contains the message below. The "movie.mjpeg" name is of variable length. How can I analyze the char* so that I can save the name of the movie and the CSeq number in another ...
0
votes
2answers
89 views

C string splitting with strtok by newline character error

I run into a problem with splitting a string by the new line character. The idea is that the server is sending to a client a message and the client splits the message by newline character in other 2 ...
2
votes
2answers
124 views

Find int in a string (char*) in pure c

There is a string with a line of text. Let's say: char * line = "Foo|bar|Baz|23|25|27"; I would have to find the numbers. I was thinking of something like this: If the given char is a ...
-1
votes
1answer
52 views

Retrieve Function content from C File [closed]

Thank you in advance for the help -- I am writing a simple application in Java that is supposed to, given a C files location, open the file and print a specified functions content if it exists. My ...
0
votes
2answers
103 views

Counting number of lines in CSV file without loading into memory

I have a CSV file that is extremely large, roughly 50k+ lines. I use CHCSVParser to parse it all line by line which works fine. I would like to display some type of progress to the user as the data ...
1
vote
4answers
205 views

sscanf variable length string parsing

I have a problem that is probably fairly common and likely has a beautiful hack that I am not aware of. I would greatly appreciate it if someone would enlighten me! I am using C's sscanf() function ...
0
votes
2answers
89 views

parse key-value in c

How do i parse key-value string in C and assign it to appropriate variable? I.e. we will pass this string to a program: x = 193 and it will assign value to appr. variable, so printf("%i", x); ...
4
votes
1answer
105 views

Parsing simple HTML into tree

I'd like to ask what is the best way to parse a simple html code into DOM Node tree like this one: Here are some constraints I am facing: HTML code will have only pair tags, no attributes and ...
0
votes
1answer
66 views

Parsing doubles from char into a 2D array with sscanf

Typical for a C beginner, I have some problems understanding arrays, pointers and pointers of arrays. Unfortunately, the info provided here did not help me much, since all deal with "easier" problems. ...
1
vote
1answer
63 views

Parsing errors with Bison

I'm writing my own scripting language using flex and bison. I have a grammar and I'm able to generate a parser which works fine with a correct script. I would like to be able to add also some ...
1
vote
4answers
175 views

grep or C code to parse log file?

I have a log file I want to parse I only need the first two fields (separated by space) sample line from the log file: 1362960460.697 19 27.197.12.76 TCP_MISS/404 339 GET ...
0
votes
2answers
58 views

I need to parse some month names in C

The user inputs a birthday: month, day, year. Of course, it needs to be in string format because integers aren't good enough. Anyway, I need to find which day of the year a specific birthday is (So ...

1 2 3 4 5 12