C to plain English
Hello again
Is there anybody there who could translate the following for me?
Preferably into plain English, or if not, into Eu?
The // I am taking as equiv. to our --
but things like ++ after a name ,* before a name, ->, < and && have
me beat
---------------------------------------------------------------------------
// Read each line in the specified file.
for (iItem = 0;
fgets(g_achTemp, sizeof(g_achTemp), pfData);
iItem++) {
// Allocate an application-defined structure to store the
// item label and the text of each subitem.
MYITEM *pItem = LocalAlloc(LPTR, sizeof(MYITEM));
// Copy the first string (the label).
pszEnd = strchr(g_achTemp, ';');
*pszEnd = '\0';
pItem->aCols[0] = DupString(g_achTemp);
// Copy subsequent strings (subitems).
for (iSubItem = 1;
iSubItem < C_COLUMNS && pszEnd != NULL;
iSubItem++) {
pszStart = pszEnd + 1;
if ((pszEnd = strchr(pszStart, ';')) != NULL)
*pszEnd = '\0';
pItem->aCols[iSubItem] = DupString(pszStart);
}
---------------------------------------------------------------------------
Many grateful thanx for any help
All the best
Terry
|
Not Categorized, Please Help
|
|