Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > Include header file problem !! on ANSI - C

Reply
Thread Tools

Include header file problem !! on ANSI - C

 
 
alan
Guest
Posts: n/a
 
      08-21-2003
Dear all,

I have written my own function by C. And my development platform is
W2k with VC6.0.
Then I also defined a header file to extern declare this function.
After that, I include this header file.

The function is stored in C:\temp\myfun.c
int func(){
return 1;
}

The header file is stored in C:\temp\myheader.h
extern int func(void);


in my main program, I got a problem if I include this header file
(myheader.h).
#include <stdio.h>
#include "C:\temp\myheader.h"

void main(){
func();
}

This main program is not in c:\temp\ folder.
The error message is {
--------------------Configuration: pureC_test - Win32
Debug--------------------
Compiling...
main.c
Linking...
main.obj : error LNK2001: unresolved external symbol _func
Debug/pureC_test.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
Creating browse info file...

pureC_test.exe - 2 error(s), 0 warning(s)

}

BUT if I copy the myfun.c & myheader.h in the same path as the main
program. It works fine.

Can anybody help me to solve this problem??

Thank you very much.
Alan
 
Reply With Quote
 
 
 
 
CBFalconer
Guest
Posts: n/a
 
      08-21-2003
alan wrote:
>

.... snip ...
>
> The function is stored in C:\temp\myfun.c
> int func(){
> return 1;
> }
>
> The header file is stored in C:\temp\myheader.h
> extern int func(void);
>
> in my main program, I got a problem if I include this header file
> (myheader.h).
> #include <stdio.h>
> #include "C:\temp\myheader.h"


Those backslashes are escape characters. \t means a tab char. \m
is not defined, but most likely is taken as m. Either use forward
slashes, or double the backslashes.

.... snip ...
>
> Can anybody help me to solve this problem??


--
Chuck F () ()
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!

 
Reply With Quote
 
 
 
 
Randy Howard
Guest
Posts: n/a
 
      08-21-2003
In article < >,
says...
> in my main program, I got a problem if I include this header file
> (myheader.h).
> #include <stdio.h>
> #include "C:\temp\myheader.h"


This is all off-topic for CLC, which only talks about the standard
C language, not compiler-specific build environments and their
problems. One of the microsoft newsgroups is probably your best
bet.

However... Using VC, without an external make file, the usual way of
doing this is to add the directory to your include path in the
project itself, then simply use
#include "myhdeader.h"

>
> void main(){
> func();
> }
>
> This main program is not in c:\temp\ folder.
> The error message is {
> --------------------Configuration: pureC_test - Win32
> Debug--------------------
> Compiling...
> main.c
> Linking...


Notice, it never compiled myfun.c. That's because the source file also
must be added to the project. The unresolved external is due to there
not being an object file containing func(). Add the source file, do
a build all, and you should be good to go.

 
Reply With Quote
 
W.Paure
Guest
Posts: n/a
 
      08-21-2003
CBFalconer <> wrote in message news:<>...
> alan wrote:
> >

> ... snip ...
> >
> > The function is stored in C:\temp\myfun.c
> > int func(){
> > return 1;
> > }
> >
> > The header file is stored in C:\temp\myheader.h
> > extern int func(void);
> >
> > in my main program, I got a problem if I include this header file
> > (myheader.h).
> > #include <stdio.h>
> > #include "C:\temp\myheader.h"

>
> Those backslashes are escape characters. \t means a tab char. \m
> is not defined, but most likely is taken as m. Either use forward
> slashes, or double the backslashes.

It's true.In addition,the content of 'myheader.h' should be
int func(void);
The word of extern isn't needed.
>
> ... snip ...
> >
> > Can anybody help me to solve this problem??

 
Reply With Quote
 
Eric Sosman
Guest
Posts: n/a
 
      08-21-2003
CBFalconer wrote:
>
> alan wrote:
> >

> ... snip ...
> >
> > The function is stored in C:\temp\myfun.c
> > int func(){
> > return 1;
> > }
> >
> > The header file is stored in C:\temp\myheader.h
> > extern int func(void);
> >
> > in my main program, I got a problem if I include this header file
> > (myheader.h).
> > #include <stdio.h>
> > #include "C:\temp\myheader.h"

>
> Those backslashes are escape characters. \t means a tab char. \m
> is not defined, but most likely is taken as m. Either use forward
> slashes, or double the backslashes.


Nit-pick: The backslashes are *not* escape sequences,
and \t does *not* mean a tab character. The stuff between
the double quotes is a "q-char-sequence," *not* a string
literal.

6.4.7 Header names
/3/ [...] Similarly, if the characters ', \, //, or /*
occur in the sequnce between the " delimiters, the
behavior is undefined(6

6 Thus, sequences of characters that resemble escape
sequences cause undefined behavior.

The practical consequence is that the form of header names
is platform-dependent, and it's up to the platform to decide
what (if anything) to do with backslashes and the like. The
O.P.'s compiler may or may not accept them -- and doubling
the backslashes may or may not cure the problem.

--

 
Reply With Quote
 
alan
Guest
Posts: n/a
 
      08-22-2003
sorry, I made a type mistake on path slash char.
I repeat my question.

I defined a header file to extern declare this function.
After that, I include this header file.

The function is stored in C:\\temp\\myfun.c
int func(){
return 1;
}

The header file is stored in C:\\temp\\myheader.h
extern int func(void);


in my main program, I got a problem if I include this header file
(myheader.h).
#include <stdio.h>
#include "C:\\temp\\myheader.h"

void main(){
func();
}

The main program , say "main.c" is stored in another location.
But if I copy the myfunc.c & myheader.h to the same path of "main.c",
it works fine.

My question is why my main.c program cannot locate "myfunc.c" & "myheader.h" file ??

Can anybody help me?

Pls help!!

Thank you very much.



Randy Howard <> wrote in message news:<. net>...
> In article < >,
> says...
> > in my main program, I got a problem if I include this header file
> > (myheader.h).
> > #include <stdio.h>
> > #include "C:\temp\myheader.h"

>
> This is all off-topic for CLC, which only talks about the standard
> C language, not compiler-specific build environments and their
> problems. One of the microsoft newsgroups is probably your best
> bet.
>
> However... Using VC, without an external make file, the usual way of
> doing this is to add the directory to your include path in the
> project itself, then simply use
> #include "myhdeader.h"
>
> >
> > void main(){
> > func();
> > }
> >
> > This main program is not in c:\temp\ folder.
> > The error message is {
> > --------------------Configuration: pureC_test - Win32
> > Debug--------------------
> > Compiling...
> > main.c
> > Linking...

>
> Notice, it never compiled myfun.c. That's because the source file also
> must be added to the project. The unresolved external is due to there
> not being an object file containing func(). Add the source file, do
> a build all, and you should be good to go.

 
Reply With Quote
 
Randy Howard
Guest
Posts: n/a
 
      08-22-2003
In article < >,
says...
> My question is why my main.c program cannot locate "myfunc.c" & "myheader.h" file ??
>
> Can anybody help me?
>
> Pls help!!



I already answered your question, included in the quoted text of your
reply. I give up.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
pre-ansi to ansi c++ conversion? Frank Iannarilli C++ 2 07-21-2009 11:05 PM
Are there statistics packages in ANSI C and/or ANSI C++? lbrtchx@gmail.com C Programming 11 04-28-2008 03:00 AM
Are there statistics packages in ANSI C and/or ANSI C++? lbrtchx@gmail.com C++ 1 04-24-2008 06:44 PM
/* #include <someyhing.h> */ => include it or do not include it?That is the question .... Andreas Bogenberger C Programming 3 02-22-2008 10:53 AM
#include headers that include this header Aguilar, James C++ 2 07-16-2004 05:56 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57