0
votes
2answers
39 views

executing a command on system() in C - linux

I run the code below, int main() { char settime_parameters[13]= "042122142013"; char command[25]; sprintf(command, "date %s", settime_parameters ); printf("%s\n",command); system("commad"); ...
1
vote
1answer
31 views

copy the output of an executed command by the system() call to a char array

Is it possible to copy the output of a command used on system() function on Linux? E.g., If I run #include <stdlib.h> int main(int argc,char *argv[]){ char date[8]; //e.g., 20130421 ...
0
votes
2answers
77 views

C code for date time format validation. specified format is “YYYYMMDDHHMMSSmmmmmm”

I need to validate a date-time value for "YYYYMMDDHHMMSSmmmmmm" format. Actually what I am hoping is I need to find out a already tested working C code to validate a date time value for above format. ...
0
votes
1answer
46 views

strftime first day of current week

strftime('%s', 'now', 'start of month') AND strftime('%s', 'now', 'start of month', '+1 month', '-1 day') this gives me range between first and last day of current month. How can I get range of ...
1
vote
1answer
58 views

Unix timestamp to FAT timestamp

Im trying to convert a time structure to a FAT timestamp. My code looks like: unsigned long Fat(tm_struct pTime) { unsigned long FatTime = 0; FatTime |= (pTime.seconds / 2) >> 1; ...
0
votes
3answers
115 views

How to get correct time in Linux

Currently I am able to receive the current date time with the help of functions like localtime() gettimeofday() etc from time.h Suppose a user modifies the date and time settings in Linux to change ...
3
votes
1answer
83 views

Representing dates before epoch

We have a bespoke datetime C++ class which represents time in number of seconds passed since epoch. This is stored as int64. This class provides number of helper functions to read and write various ...
0
votes
3answers
65 views

asctime/localtime output error

char timestamp() { time_t ltime; struct tm * loctime; char thetime; time(&ltime); loctime=localtime(&ltime); printf("%s", asctime(loctime)); // "Sat Mar 2 12:12:57 ...
1
vote
2answers
262 views

Convert miliseconds to timespec - GNU Porting

i want to convert miliseconds into timespec structure of GNU(GCC) linux. I have tried following code for the same. timespec GetTimeSpecValue(unsigned long milisec) { struct timespec req; ...
0
votes
3answers
90 views

Efficiently calculate leap days

Im using the following function to calculate the number of leap days between two years: static int CountLeapDays(int startYear, int endYear) { int Days = 0; while (true) { if ...
3
votes
4answers
303 views

Get the time zone GMT offset in C

I'm using the standard mktime function to turn a struct tm into an epoch time value. The tm fields are populated locally, and I need to get the epoch time as GMT. tm has a gmtoff field to allow you to ...
0
votes
2answers
114 views

localtime() gets it wrong, says date = September 31

I am making a calendar program. The 'expand repeating events' code is giving me no end of trouble. I am expanding events by using mktime() to get a 'pure' time value, then adding the repeat delta (in ...
1
vote
2answers
1k views

How to convert st_mtime (which get from stat function) to string or char

I need to convert st_mtime to string format for passing it to java layer, i try to use this example http://www.cplusplus.com/forum/unices/10342/ but compiler produce errors invalid conversion ...
2
votes
1answer
161 views

What does a negative dwLowDateTime mean in the FILETIME structure?

I know that FILETIME structure formed datetime value in 100 nanosecond step from 1st of Jan 1601. But what does mean dwLowDateTime's value that less then 0???
0
votes
2answers
122 views

string is getting corrupted after using the time functions

i have written a datediff in days function which return the number of days for two dates (input format is 20100810) after running the program my input strings are getting corrupted, unable to ...
1
vote
1answer
61 views

How do I get the timezone initials?

I am trying to create a Date header for an email. The format is as follows: DayOfWeek, Day ShortMonth Year Hours:Minutes:Seconds Offset (TimeZone) So an example would be: Fri, 19 Mar 2010 ...
1
vote
2answers
225 views

time function in C

In shell scripting, when ever I want the local time I do something like date +%s from the command line and it returns me the current date and time in this format "1343221713" I am wondering ...
3
votes
2answers
712 views

getting utc timestamp using strftime()

I am trying to encode current utc time into string using the strftimefunction: time_t now; struct tm nowLocal; struct tm nowUtc; now = time(NULL); localtime_r(&now, &nowLocal); ...
1
vote
4answers
154 views

Time function not working in c

I used the following code segment to get the system time. But it results in a segmentation fault. Please help. printf("Time : %s\n", System("time")); return 0;
-3
votes
1answer
156 views

How to print time in “dd mm yyyy hh mm sec” format in LINUX / C

I am generating an XML file using libxml2. In one of the tags i want to put the current time in "dd mm yyyy hh mm sec" format. My dev environment is C/LINUX. Thanks !
0
votes
4answers
699 views

How do I convert “2012-03-02” into unix epoch time in C?

A string "2012-03-02" representing March 2nd, 2012 is given to me as an input variable (char *). How do I convert this date into unix epoch time in C programming language?
1
vote
3answers
688 views

How to get file modification time in c under multiple OS?

I'm trying to write a portable function in c that compares the last modified times of 2 files. The files are tiny and written one right after the other, so I need finer granularity than 1 second ...
0
votes
1answer
63 views

DateTime as a key

I'm trying to use datetime type as a key in b-tree BerkeleyDB database. My goals: minimum overhead for datetime storage key comparison by date (to retrieve range) reasonable speed How to ...
4
votes
2answers
1k views

How to introduce date and time in log file

I have one daemon written in C. I am logging the events in a log file, but now I want to add date and time while writing event to log file. How can I achieve that? Current log file:- Event one ...
2
votes
1answer
169 views

Python: Usage of PyDateTime_FromTimestamp

I'm working on a python c-extension and want to create an instance of python datetime object with a unix timestamp. On the documentation site ( http://docs.python.org/c-api/datetime.html ) I found ...
0
votes
1answer
110 views

How to get time value as referenced parameter in C

I am not familiar with C too much, but for a project I have to do something with an API...What I should do is to get the date info of some business entity which is encapsulated in API... time_t ...
5
votes
2answers
197 views

DST restoration under Linux in C

I have date/time information from Berlin,Germany. For example: 2011-05-16 12:24:23, 2011-01-21 17:00:31 Unfortunatly, these times have NO daylight saving information. I know that the first date is ...
1
vote
1answer
229 views

OCIDate getting mangled on the way into Oracle

I have some C code to populate an OCIDate from the epoch time: In my main program: OCIDate ocidate; epoch_to_ocidate(c.f, &ocidate); And in a library: void epoch_to_ocidate(double d, OCIDate* ...
1
vote
6answers
320 views

Find the date in N days by now

I'm looking for an algorithm to find the date of a day in the future, which is in N days from today. My main problem is how to deal with leap years in the middle.
1
vote
5answers
1k views

converting string time to seconds

This is the code in which I'mm converting string time to date time formate and the to seconds, but it is displaying some strange value. Kindly help me Code: struct tm tm; time_t t; char s[25]="Sat ...
1
vote
1answer
565 views

compare two time values

hi every one i want to ask that i want to compare two time values in c how can i do it time is in form Sat Feb 19 12:53:39 2011 thanks
2
votes
4answers
836 views

How to get iso_date ( YYYYMMDD ) from time_t / timeval

Given a time_t as 1291121400, how do I get the date of that day formatted as 20101130?
2
votes
3answers
1k views

How should I store a time_t timestamp to a file using C?

For a small todo program that I am writing, I have timestamps that are of this form time_t t = time(NULL); and are saved every time a task is entered to denote the time that it was entered. I want ...
1
vote
2answers
2k views

How do I modify a time_t timestamp in C?

This is how we can store the current time and print it using time.h : $ cat addt.c #include<stdio.h> #include<time.h> void print_time(time_t tt) { char buf[80]; struct tm* st = ...
0
votes
3answers
605 views

Convert UTC to days, hours minutes etc in C

I have a a long which has the time in UTC format as a timestamp for some data, now I want to convert it to this format: month 1-12 Day 1-31 24 Hour format 0-23 minute 0-59 second 0-59 subsecond ...
2
votes
1answer
825 views

How do I get a date or datetime out of an SQLite3 row?

There is no function as sqlite3_column_date which I need: int i = 0; for (NSString *key in [self valuesWithTypes]) { id value; if ([[[self valuesWithTypes] objectForKey:key] ...
2
votes
2answers
489 views

How to print unsigned int value as a time string in C

I need to print this value as a time string to Mon 16-Aug-2010 06:24 format or something similar. unsigned int t = 1281920090;
1
vote
4answers
1k views

which one faster, getimeofday or clock_gettime?

I want to store event time. I found these two functions, but don't know which one is faster.
0
votes
2answers
503 views

Implementation code for GetDateFormat Win32 function

I am porting some legacy code from windows to Linux (Ubuntu Karmic to be precise). I have come across a Win32 function GetDateFormat(). The statements I need to port over are called like this: ...
0
votes
1answer
327 views

How do you obtain a formatted date and time for the current locale in C?

What C function should I call to obtain a formatted date and time for the locale where the program is being executed? I'm asking this question because I have run into a problem using the ClamAV ...
3
votes
2answers
442 views

Working with timezones in C

I'm currently migrating some of my code from Cocoa (Apple's Objective-C API) to C, in order to make it available for other operating systems, such as GNU/Linux. In Cocoa, there were many great things ...
1
vote
1answer
4k views

Why my print current date time (C language) gives different answer

I want to get the current date (day, mon and year). I found out there are some functions in C to do that like ctime (get the string of time), localtime and gmtime. I tried with following code but the ...
4
votes
3answers
1k views

How to programatically convert a time from one timezone to another in C?

The info pages for the GNU date command contains this example: For example, with the GNU date command you can answer the question "What time is it in New York when a Paris clock shows 6:30am ...
1
vote
2answers
369 views

A question about strftime

The question is simple "Say we have an integer 1 <= n <= 12,How to use strftime to display January for '1',February for '2',March for '3' and so on ... ?"
1
vote
4answers
425 views

Need Help Programming in C comparing times together

i need some advice and help with a plugin i am writing for Nagios. i am writing the plugin in C, but have no previous experience in the language except for minor amounts whilst trying to get this ...
3
votes
3answers
1k views

Get current date and time in seconds

time_t rawtime; struct tm *mytm; time_t result; time(&rawtime); mytm=localtime(&rawtime); mytm->tm_mon=month-1; mytm->tm_mday=day; mytm->tm_year=year-1900; mytm->tm_sec=0; ...
0
votes
5answers
214 views

Trouble with Calendar homework in C

I am writing a program that get month and year from the user, and then print out the calendar. But the calendar is only correct in January (every two years). How do I make the other months correct? ...
3
votes
4answers
4k views

add seconds to a date

I need to add seconds to a date. For example, if I have a date such as 2009127000000, I need to add the seconds to this date. Another example, add 50 seconds to 20091231235957. Is this possible in C? ...
2
votes
4answers
234 views

References for implementing calendar functionality in an embedded system?

I have an embedded system that currently keeps track of seconds until an event is supposed to occur using a real-time clock driven by a watch crystal. Now it needs to keep track of the actual date ...
2
votes
3answers
4k views

Converting string containing localtime into UTC in C

I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this: char* date = "2009/09/01/00"; struct tm cal = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...

1 2